n = input().split(' ') a = int(n[0]) b = int(n[1]) q = b // a r = b % a if r == 0: print(q) else: print(q + 1)