by CodeChum Admin
We've tried adding together integers, now how about strings?
Instructions:
Input
A line containing two strings separated by a space.
hello·world
Output
A line containing the concatenated string with no spaces.
helloworld
string = input() res = "" for word in string.split(): res += word print(res)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments