fun main(args: Array) { val (S, K) = readLine()!!.split(" ").map { it.toInt() } println(S / K) }