提交时间:2026-01-04 15:30:29
运行 ID: 80762
a = int(input()) if a % 4 == 0 and a % 100 != 0 or a % 400 == 0: print('Y') else: print('N')