while True:
try:
a=int(input())
if a>=60:
print('Pass')
else:
print('Fail')
except:
break;