mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-15 19:11:12 +03:00
12 lines
276 B
Python
12 lines
276 B
Python
n = int(input())
|
|
if 1 <= n <= 100:
|
|
if n % 2 == 1:
|
|
print("Weird")
|
|
elif n % 2 == 0 and n >= 2 and n <= 5:
|
|
print("Not Weird")
|
|
elif n % 2 == 0 and n >= 6 and n <= 20:
|
|
print("Weird")
|
|
else:
|
|
print("Not Weird")
|
|
else:
|
|
print("Error")
|