#include <stdio.h>

int main() {
    int IQ;
    scanf("%d",&IQ);
    if(IQ>=140) printf("Genius");
    return 0;
}