Guest User

Untitled

a guest
May 16th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. print('Hey what\'s up?')
  2. print('You\'re in a room, and there is a bear.')
  3. print('Do you want Attack the Bear-1 or die?-2')
  4. c1 = int(raw_input("What do you do?"))
  5. if c1 == 1:
  6.     print('You died, loser.')
  7. elif c1 == 2:
  8.     print('Lol, quitter, you died.')
  9. else: print('You messed up')
Add Comment
Please, Sign In to add comment