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