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