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