gooddrink = 'water' crazydrink = 'coffee' drink = input("What is your favourite drink?") if drink == gooddrink: print('What a excellent, Healthy choice!') elif drink == crazydrink: print('Carefull... not too many cups, or you will go nuts!') else: print('Ive never heard of that!')