kkalog

Untitled

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