salary = int(input("How much is your salary: "))
saving = int(input("How much is your saving: "))
if (salary<30000) or (saving<4000):
    print("You are eligible to get free ticket.")
    choice = input("Do you need some help? ")
    if choice == "yes" or "yeah" or "y":
        print("Well then congrats! You get a free ticket.")
    elif choice == "no" or "nope" or "n":
        print("Thank you for answering. ")
else:
    print("Proceed ahead!!")
So here when I enter yes or no I am not getting the answer I am expecting based on the conditions. Can anybody tell me the reason, please? Thank you.
 
     
    