fun main(args:Array) { val (a, b) = readLine()!!.split(" ").map{ x -> x.toDouble() } println(Math.ceil(b/a).toInt() ) }