fun main() { val (a, n) = readLine()!!.split(" ").map { it.toDouble() } val k = kotlin.math.floor(a / n).toInt() println(k) }