Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. # The following adds two numbers
  2. print "This program allows you to add two numbers. HINT: Only use integers"
  3. Number_One = raw_input("Type_Your_First_Number")
  4. Number_Two = raw_input("Type_Your_Second_Number")
  5.  
  6. print Number_One + Number_Two
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement