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

div = b // a
mod = b % a

if mod == 0:
    print("{0}".format(div))
else:
    print("{0}".format(div + 1))