favourite_drink = (input("What is your favourite drink?")) if favourite_drink == "water" : print( "What excellent, healthy choice" ) elif favourite_drink == "coffee" : print( "Careful... not too many cups, or you'll explode!" ) else: print( "I've never heard of that!" )