#include<stdio.h>

int main()

{
	int iq = 0;
	while(scanf("%d", &iq)==1)
	{
		if (iq >= 140)
			printf("Genius");

	}

	return 0;
}