drink = input("Insert a drink -- ")


if drink == "water".casefold() :
    print("Water is a good one")
elif drink == "coffee".casefold() :
    print("Coffee, pretty cool")
else :
    print("I only know two drinks and you didn't say it! Also don't capitalize the first letter")