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