import math #input s = input() ss = s.split() a = float(ss[0]) b = int(ss[1]) r = math.ceil(b/a) r = int(r) print(r)