#include <stdio.h>

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

    return 0;
}