#37865: 只有80請問哪裡可以改進


wayne0922538986@gmail.com (4 14)


students = int(input())
score = sorted(list(map(int,input().split(" "))))
print(*score)
if min(score)>=60:
 print('best case')
else:
 for i in range(59,-1,-1):
  if i in score:
   print(i)
   break
if max(score)< 60:
 print('worst case')
elif:
 for i in range(60,100):
  if i in score:
   print(i)
   break
   

#37866: Re: 只有80請問哪裡可以改進


asnewchien@gmail.com (david)


你這樣同樣的分數會印幾次。