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