foot, dist = map(int, input().split(' ')) step = 0 while True: step += 1 if step*foot >= dist: break print(step)