fun main(){ val ab = readLine()!!.split(" ").map(String::toInt) println(ab[1] / ab[0] + if(ab[1] % ab[0] != 0) 1 else 0) }