#include<bits/stdc++.h> using namespace std; int main() { int a=0; while(scanf("%d",&a)!=EOF) { if(a>=90&&a<=100) printf("Perfect"); } return 0; }