a, b = map(int, input().split()) rest = b // a if b % a != 0: print(rest + 1) else: print(rest)