N=int(input()) nums=input().split() a=[] while nums: a=a+nums nums=input().split() s='' for ele in a: s=s+chr(int(ele)) print(s)