#include<stdio.h>
int main()
{
int IQ;
printf("请输入你的IQ:");
scanf_s("%d", &IQ);
if (IQ >= 140)
printf("Genius");
return 0;
}