def min_steps(a, b): if b % a == 0: return b // a else: return b // a + 1 a, b = map(int, input().split()) print(min_steps(a, b))