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