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