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