fun main(args: Array) { p961() } fun p961() { val (s, f) = readLine()!!.split(' ').map { it.toInt() } val answer = s / f + 1 println(answer) }