Run ID:105173
提交时间:2025-01-12 16:19:33
n=int(input()) if (n%4==0 and n%100!=0) or n%400==0: print(n,"Yes") else: print(n,"No")