n=int(input()) nums=input().split() a=[] while nums: a=a+nums nums=input().split() a=[chr(int(x))for x in a] b=''.join(a) print(b)