#include using namespace std; int S, F; void Solve() { cout << S / F + 1 << endl; } int main() { cin >> S >> F; Solve(); return 0; }