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