Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. print("Hi, I am Marvin, your personal bot.")
  2. print("Let's get started!!")
  3. user_name = input("What's your name!? ")
  4. print(user_name)
  5. print("Hello " + user_name + ". Welcome!!")
  6. print("Let's add some numbers!!")
  7. input1 = input("Number 1> ")
  8. input2 = input("Number 2> ")
  9. input3 = input("Number 3> ")
  10. result = int(input1) + int(input2) + int(input3)
  11. print(result)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement