#38609: Python ANS


106176@stu.mhups.tp.edu.tw (04劉旻燁)


m, d = map(int, input().split())

s = (m*2 + d) % 3

match s: case 0:

print("普通")

case 1: print("吉")

case 2: print("大吉")

#38614: Re: Python ANS


mysimplepanda@gmail.com (abandoned._.)


m, d = map(int, input().split())

s = (m*2 + d) % 3

match s: case 0:

print("普通")

case 1: print("吉")

case 2: print("大吉")

zerojudge還不能用match-case啦~  那是3.10版才有的東西