n=int(input()) l=list(map(int,input().split())).append (0) b=[] for i in range(n): b.extend([n-i]*(l[i]-l[i+1])) print(map("".join,str(b)))