object Main { def main(args: Array[String]): Unit = { val Array(d, p) = readLine().split(' ').map(_.toInt) println((d * (100 + p)) / 100) } }