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