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