a, b = map(int, input().split(' '))

if b%a ==0:
    step = b//a
else:
    step = b//a + 1
print(step)