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