Run ID:116780

提交时间:2025-04-12 14:25:03

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