#include #include int main() { int a, b, c; std::cin >> a >> b; c = b / a; if(c * a != b) { c++; } std::cout << c << std::endl; }