#include int main(int argc, char *argv[]) { int current_step = 0; int one_floor_steps = 0; std::cin >> current_step; std::cin >> one_floor_steps; std::cout << (current_step / one_floor_steps) + 1 << std::endl; return 0; }