Run ID:89804

提交时间:2024-09-07 10:33:04

n = int(input()) l=[] for i in range(n): a=int(input()) l.append(chr(a)) r = ''.join(l) print(r)