0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

T174128 闰年的故事

R64352197
This commit is contained in:
Baoshuo Ren 2021-12-05 15:20:27 +08:00
parent de94a09b9b
commit 620536d034
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

9
Luogu/T174128/T174128.py Normal file
View File

@ -0,0 +1,9 @@
import calendar
if __name__ == "__main__":
n = int(input())
if calendar.isleap(n):
print("Wonderful")
else:
print("Orz")