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