kkalog

Untitled

Jul 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. def sum_of_numbers(num1,num2):
  2.   print int(num1) + int(num2)
  3.  
  4.  
  5. x = raw_input("Give me the first number:")
  6. y = raw_input("Give me the second number:")
  7.  
  8. sum_of_numbers(x,y)
Advertisement
Add Comment
Please, Sign In to add comment