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

}