a, b = map(int, input().split()) count = 0 temp = 0 while True : if temp >= b : break elif temp < b : temp += a count += 1 print(count)