a, b = map(int, input().split()) q, r = b//a, b%a if r != 0: q += 1 print(q)