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