fun main(args: Array) { val n = readLine()!!.toBigDecimal() var s = "0." for (i in 1..99) s += i.toString() s += "1" println(s.toBigDecimal()*n) }