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