Can you please explain when I give input as 1, why I am not able to see any results for below code?
N = int(input("enter number:"))
if N%2 != 0:
    if N >=2 and N<=5:
        print (N, "Not Wired")
    elif N>=6 and N<=20:
        print(N," ->Wired")
    elif N>20:
        print(N," ->NotWired")
   else:
        print ("Wired")