mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
10 lines
151 B
Python
10 lines
151 B
Python
import calendar
|
|
|
|
if __name__ == "__main__":
|
|
n = int(input())
|
|
|
|
if calendar.isleap(n):
|
|
print("Wonderful")
|
|
else:
|
|
print("Orz")
|