import kotlin.math.* fun main() { val (D, P) = readLine()!!.split(" ").map(String::toLong) println(D * (100+P) / 100) }