#include using namespace std; int main() { int S, F,currentFloor; cin >> S >> F; currentFloor = (S / F)+1; cout << currentFloor <<"\n"; return 0; }