answer = input("What is your favourite drink?") if answer == "water": print("What an excellent, healthy choice!") elif answer == "coffee": print("What an excellent, healthy choice!") elif answer != "water" or answer != "coffee": print("What an excellent, healthy choice!")