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