import scala.io.StdIn object Problem220 { def proc(P: Int): Long = { val n: BigDecimal = Math.pow(10, P) val notNantoka: BigDecimal = n * 0.6 * BigDecimal(0.9).pow(P - 1) (n - notNantoka - 0.01).toLong } def main(args: Array[String]) { val P = StdIn.readInt() val result = proc(P) println(result) } }