a, b = map(int, input().split()) num = 1 while(b-a > 0): b -= a num += 1 print(num)