include<stdio.h>

int main()

{

int a=0;

int IQ=140;

scanf("%d",&a);

if(a>=IQ)

printf("Genius");

return 0;       
}