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