#include<stdio.h>

int main()

{

int score = 0;

while (scanf("%d", &score)!=EOF)

if (score >= 140)

printf("Genius");

return 0;

}