提交时间:2025-04-19 16:06:27

运行 ID: 318569

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