MazeDomains

Untitled

Feb 14th, 2020
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. print("Hi, I'm Booster, your crazy helper bot.")
  2. print("Lets add some numbers!!!")
  3. a = int(input("Number 1> "))
  4. b = int(input("Number 2> "))
  5. c = a + b
  6. print('The answer is', c)
  7. d = int(input('Now enter a number to divide that answer by>'))
  8. e = c/d
  9. print('The new answer is', e)
Add Comment
Please, Sign In to add comment