L = input().split() for i in L: print(i,end="")
L=input().split() print(''.join(L))
题目要求是一行代码:print(''.join(L))