Run ID:116783

提交时间:2025-04-12 14:31:31

a=int(input()) if (a%4 == 0 and a%100!=0) or a%400 == 0: print(a,"YES") else: print(a,"NO")