Problem :
Given an integer, n
, perform the following conditional actions:
- If
n
is odd, printWeird
- If
n
is even and in the inclusive range of2
to5
, printNot Weird
- If
n
is even and in the inclusive range of6
to20
, printWeird
- If
n
is even and greater than20
, printNot Weird
Sample Input 0 :
3
Sample Output 0 :
Weird
Sample Input 1 :
24
Sample Output 1 :
Not Weird
Solution :
import math
import os
import random
import re
import sys
if __name__ == '__main__':
n = int(input().strip())
if n % 2 == 1:
print("Weird")
elif n % 2 == 0 and 2 <= n <= 5:
print("Not Weird")
elif n % 2 == 0 and 6 <= n <= 20:
print("Weird")
else:
print("Not Weird")
189 total views, 2 views today