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