#include using namespace std; int main() { int S, F; cin >> S >> F; int a = S / F; int b = a + 1; if (F > S) { cout << "1" << endl; } else { cout << b << endl; } return 0; }