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