竞赛
考级
def is_run(n): if (n %40and n%100!=0) or n %4000: return True return False year = int(input()) if is_run(year): print("yes") else: print("no")
神