0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 16:25:25 +00:00
OI-codes/Luogu/T174128/T174128.py

10 lines
151 B
Python
Raw Normal View History

2021-12-05 07:20:27 +00:00
import calendar
if __name__ == "__main__":
n = int(input())
if calendar.isleap(n):
print("Wonderful")
else:
print("Orz")