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