Run ID:92938

提交时间:2024-10-07 10:10:55

s = input().split() s = list(map(int, s)) year = s[0] if year % 400 == 0 or (year % 4 == 0 and year % 100 != 0): print(str(year) + " Yes") else: print(str(year) + " No")