mirror of
https://github.com/tiennm99/CodePower.git
synced 2026-06-06 06:09:52 +00:00
10 lines
202 B
Python
10 lines
202 B
Python
n = int(input())
|
|
if n%2 != 0:
|
|
print("Weird")
|
|
else:
|
|
if n >= 2 and n <= 5:
|
|
print("Not Weird")
|
|
elif n >= 6 and n <=20:
|
|
print("Weird")
|
|
elif n > 20:
|
|
print("Not Weird") |