Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. print("Hello I'm Papichulo your bot")
  2. print("Shall we add some numbers")
  3. input1 = input("Wich should be the first one?")
  4. input2 = input("Wich should be the second one?")
  5. n1 = int(input1)
  6. n2 = int(input2)
  7. sum = n1 + n2
  8. output = str(sum)
  9. print(input1 + " + " + input2 + "=" + output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement