#include using namespace std; int main(int argc, const char * argv[]) { int s,f,ans; cin >> s >> f; ans = s/f + 1; cout << ans << "\n"; return 0; }