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