Run ID:144176
提交时间:2026-01-19 21:41:33
n=int(input('')) if n%4==0 and n%100!=0 or n%400==0: print(n,'yes') else: print(n,'no')