def f(n, i) a, b = n.divmod(i) (a > 0 ? f(a, i) : []) + [b] end N = gets.to_i puts f(N, 7).join