a, b = map(int, input().split()) steps = 1 while a * steps < b: steps += 1 print(steps)