#include <stdio.h>

int main()
 {
   int x=0;
   while(scanf("%d",&x)!=-1)//多组输入
   {
    if(x>=140)
    printf("Genius");
   }
    return 0;
}