#include using namespace std; int main(int argc, char *argv[]) { int S, F; cin >> S >> F; cout << (S / F + 1) << endl; return 0; }