lst = list(map(int,input().split())) lst.sort() print(lst) p=f=0 for i in lst: if i>=60: p+=1 else: f+=1 print('Pass:%d'%p) print('Fail:%d'%f)