fun main(args: Array) { val N = readLine()!!.toInt() var ans = "" while(0 < N) { ans = (N % 7).toString() + ans } println(ans) }