题解 | #字符串链接#
字符串链接
https://www.nowcoder.com/practice/9f27c74ec91e4c7da96ba351dba235fc
while True:
    try:
        s1, s2 = input().split()
        print(s1+s2)
    except:
        break
字符串链接
https://www.nowcoder.com/practice/9f27c74ec91e4c7da96ba351dba235fc
while True:
    try:
        s1, s2 = input().split()
        print(s1+s2)
    except:
        break
相关推荐