a, b = [int(num) for num in input().split(' ')] d = b // a r = b % a if r == 0: print(d) else: print(d + 1)