Run ID:144177

提交时间:2026-01-19 21:43:36

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