fun main(args: Array) { val (a,b,c) = readLine()!!.split(" ").map { it.toLong() } val tmp = a*c/b.toDouble() println(tmp) }