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