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