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