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·worldOutput
A line containing the concatenated string with no spaces.
helloworldstring = input()
res = ""
for word in string.split():
res += word
print(res)
Comments