fun main(args: Array) { val y = "yukicoder" while (true) { val n = readLine()!!.toInt() if (n == 0) { break } println(y[n - 1]) } }