我的:
x = input().split()
y=x
M=int(x[0])
D=int(x[1])
answer=(M*2+D)%3
if answer==0:
print("普通")
elif answer==1:
print("吉")
else:
print("大吉")
盡量不要用「貼完整程式碼」的方式分享解法,改用文字說明,或提點某些部份程式碼,讓其他人有思考的空間