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