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