N = gets.to_i C = gets.split.map(&:to_i) s = '' 9.times do |i| s = (i + 1).to_s * C[i] + s end puts s