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