print('------------------------') drink = input('what is your favorite drink?') if drink == 'water' : print ('What an excellent, healthy choice!') elif drink == 'milk' : print('Interesting choice') elif drink == 'coffee' : print('Careful... try to manage your intake') elif drink == 'Coke' : print("That's not a very good choice") elif drink == 'Monster' : print("That's a very unhealthy choice") else: print("I've never heard of that, must be an obsure one")