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