fun main() { val d = readLine()!!.toInt() for(it in d downTo 1) { println("$d".repeat(it)) } }