#include int main() { int a, b; std::cin >> a >> b; int answer = (b + a - 1) / a; std::cout << answer << std::endl; return 0; }