#include<stdio.h>
int main()
{
    int i;
    scanf("%d",&i);
    if(i>=140)
    {
        printf("Genius");
    }
return 0;
}