#include #include #include int main(){ int stepLength,goalDistance; std::cin >> stepLength >> goalDistance; int requiredStep=0; for(;goalDistance>0;requiredStep++) goalDistance-=stepLength; std::cout << requiredStep << std::endl; }