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