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