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