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