竞赛
考级
zsy
毛奕程
LS_YZY
n = int(input()) if n % 4 == 0: if n%100 == 0: if n%400 == 0: print('Y') else: print('N') else: print('Y') else: print('N')
WZA