import scala.io.StdIn object Problem285 { def main(args: Array[String]) { val result = BigDecimal(StdIn.readLong()) * 1.08 println(result) } }