Task
Input Format
A single line containing a positive integer, .
Constraints
Output Format
Print Weird if the number is weird. Otherwise, print Not Weird.
Sample Input 0
3
Sample Output 0
Weird
Explanation 0
is odd and odd numbers are weird, so print Weird.
Sample Input 1
24
Sample Output 1
Not Weird
Explanation 1
and is even, so it is not weird.
n = int(input().strip())
if n%2!=0:
print("Weird")
else:
if (2<=n<=5) or (n>20):
print("Not Weird")
else:
print("Weird")
0 Comments