#include int main() { int a, b; std::cin >> a >> b; auto d = b / a; auto r = b % a; std::cout << (d + (r > 0 ? 1 : 0)) << std::endl; }