#include #include int main(){ double a, b; std::cin >> a >> b; b /= a; b = std::ceil(b); std::cout << b << std::endl; return 0; }