object Main { def main(args: Array[String]): Unit = { val Array(a, b) = readLine().split(' ').map(_.toInt) println((b + a - 1) / a) } }