#include using namespace std; int main() { int n, f; cin >> n >> f; int ans = n / f + 1; cout << ans << '\n'; return 0; }