simeonshopov

Drink something

Nov 20th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. age = int(input())
  2. if age <= 14:
  3.   print('drink toddy')
  4. elif age <= 18:
  5.   print('drink coke')
  6. elif age <= 21:
  7.   print('drink beer')
  8. else:
  9.   print('drink whisky')
Advertisement
Add Comment
Please, Sign In to add comment