a, b = [int(n) for n in input().split()] if b % a is 0: print(b // a) else: print(b // a + 1)