#include <stdio.h> int main() { int a=0; while(scanf("%d",&a)!=EOF); if(a>=90 && a<=100)//&&用来使a括在一定的范围内 { printf("Perfect"); } return 0; }