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