#include #include int main(){ int steps,stepsPerLoof; std::cin >> steps >> stepsPerLoof; std::cout << static_cast(1+steps/stepsPerLoof) << std::endl; return 0; }