#include<stdio.h>int main(){int n ;scanf("%d",&n);if(n>100||n<0)printf("input error\n");if(n>=60)printf("pass\n");elseprintf("fail\n");return 0;}