#include #define fastIO (cin.tie(0), cout.tie(0), ios::sync_with_stdio(false)) using namespace std; int main() { fastIO; int s, f; cin >> s >> f; for (int i = 0; i < 4562; ++i) { if (s < f * i) { cout << i << '\n'; return 0; } } return 0; }