A, B = map(int, input().split()) remain = B step = 0 while remain > 0: step += 1 remain -= A print(step)