a, b = map(int, input().split()) q, r = divmod(b, a) print(q if r == 0 else q+1)