0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 17:25:24 +00:00
OI-codes/Luogu/T174128/T174128.py
2021-12-05 15:20:27 +08:00

10 lines
151 B
Python

import calendar
if __name__ == "__main__":
n = int(input())
if calendar.isleap(n):
print("Wonderful")
else:
print("Orz")