a, b = list(map(int, input().split(' '))) n = 0 while a * n < b: n += 1 print(n)