#include <stdio.h>

int main() {
    int x;
    scanf("%d",&x);
    if (x>=60) printf("Pass");
    else printf("Fail");
    return 0;
}