n = int(input())
a = list(map(int, input().split()))

ans = ''

for i in range(8, -1, -1):
    ans += str(i+1) * a[i]

print(ans)