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