x = True
y = False
i = input("How many nose you have : ")
ans = 1
if i == 1:
    print(x)
elif i == 2:
    print(y)
print(ans)
If I give an input of 2, it should print the value of y. However, it is not printing the value of y for this input. I'm not sure how to solve this issue.
 
     
     
    