#include using namespace std; using ll = long long; int main() { int S, F; cin >> S >> F; int ans = 1 + S / F; cout << ans << endl; }