#include #include auto main() -> int { double a, b; std::cin >> a >> b; std::cout << static_cast(std::ceil(b / a)) << std::endl; }