#include <stdio.h> int main() { int a=0; while(scanf("%d",&a)!=EOF);//!=EOF表示能让此循坏持续进行 if( a>=140){ printf("Genius\n"); } return 0; }