提交时间:2024-11-15 19:19:57
运行 ID: 300118
n=input() n=int(n) if n%4 == 0 and n%100 != 0 or n%400 == 0: print("yes") else: print("no")