#include <stdio.h> int main() { int f; while((scanf("%d",&f) != EOF)) { if(f>=60) printf("Pass\n"); else printf("Fail\n"); } return 0; }