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