#include using namespace std; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); int S, F; cin >> S >> F; int c = S / F + 1; cout << c << endl; return 0; }