import strutils,sequtils

var a,b: int
(a,b) = stdin.readLine.split.map parseInt
echo if b mod a == 0: b div a else: b div a + 1