Run ID:86075

提交时间:2024-07-21 23:09:43

T = int(input()) tmp = [] while True: a = input().split() if len(a) == 0: break tmp.append(a) res = "" for i in tmp: for j in i: res += chr(int(j)) print(res)