#include using namespace std; int main() { int s = 0; int f = 0; cin >> s >> f; cout << s / f + 1 << endl; return 0; }