a, b = map(int, input().split()) q, mod = divmod(b, a) if mod > 0:q += 1 else:pass print(q)