Advertisement
GreatRaymondo

textnumberchall

Apr 29th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. input("Hi im Mr Biddle, im your personal bot")
  2. print("lets add some numbers")
  3. input1 = input("Number 1> ")
  4. input2 = input("Number 2> ")
  5. input3 = input("Number 3> ")
  6. number1 = int(input1)
  7. number2 = int(input2)
  8. number3 = int(input3)
  9. result = number1 + number2 + number3
  10. output = str(result)
  11. print(input1 + " + " + input2 + " + " + input3 + " = " + output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement