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