y=int(input())
if y% 4==0 and (y %100 != 0 or y %400 ==0):
    print(f"{y}是闰年")
else:
    print(f"{y}是平年")

0 条评论

目前还没有评论...