drink = input("What is your favourite drink?")

if drink == "water" :
    print("what an excellent, healthy choice!")

if drink == "coffee" :
    print("Careful... not too many cups, or you'll go nuts!")

if drink == "goat milk" :
    print("never heard of it")

if drink == "coke" :
    print("Ew that is disgusting")