Run ID:68315
提交时间:2024-03-23 08:13:37
n=int(input()) for i in range(n): a=input() b=input() x=int(len(a)/2) s=a[:x]+b+a[x:] print(s)