a,b = map(int, input().split()) div = b//a rem = b%a if rem > 0: ans = div + 1; else: ans = div; print(ans)