Run ID:94317

提交时间:2024-10-20 11:31:06

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