Run ID:144137

提交时间:2026-01-19 16:16:30

n = int(input('')) if (n % 4 == 0 and n % 100 != 0) or (n % 400 == 0): print(str(n) + ' yes') else: print(str(n) + ' no')