fun main(args: Array) { p43() } fun p43() { val (a, b) = readLine()!!.split(' ').map { it.toDouble() } val answer = Math.ceil(b / a).toLong() println(answer) }