Run ID:106638

提交时间:2025-01-16 14:30:41

y=int(input()) if y%400==0 or (y%4==0 and y%100!=0): print(y,'Yes') else: print(y,'No')