a=str(input())lis=a.split(' ')m=int(lis[0])d=int(lis[1])if (m*2+d)%3==0: print('普通')elif (m*2+d)%3==1: print('吉')else: print('大吉')