a, b = map(int, input().split()) q, r = divmod(b, a) print(q + bool(r))