A, B = map(int, input().split()) step = B // A if B%A > 0: step += 1 print(step)