A, B = map(int, input().split()) if B%A != 0: ans =(B - B%A) / A + 1 else: ans =(B - B%A) / A print(int(ans))