Run ID:89901
提交时间:2024-09-07 11:34:45
T=int(input()) l=[] for i in range(T): a=int(input()) if a>32: l.append(chr(a)) r=''.join(l) print(r)