a, b = map(int, input().split()) steps = b // a if (b % a > 0): steps += 1 print(steps)