a, b = [int(i) for i in input().split()] q, mod = divmod(b, a) if mod == 0: print(q) else: print(q + 1)