Run ID:105174

提交时间:2025-01-12 16:23:21

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