← Back to List
14219번: 막대과자 포장 ↗
Solutions
Python 3
85 B | 85 chars
n,m =map(int,input().split()) if (n*m)%3 == 0: print("YES") else: print("NO")