Advertisement
fakics

Python Math Bot (addition)

Oct 15th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. print("Hi,")
  2. print("I am a Math Bot.")
  3. bots_name = "Kathy"
  4. print("My name is " + bots_name)
  5. print("Lets add some numbers.")
  6. input1 = input("Number1> ")
  7. input2 = input("Number2> ")
  8. number1 = int(input1)
  9. number2 = int(input2)
  10. result = number1 + number2
  11. output = str(result)
  12. print(input1 + "+" + input2 + "=" + output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement