M,D = map(int, input().split())S = (M*2+D)%3if S == 0: print("普通")elif S == 1: print("吉")else: print("大吉")