#include using namespace std; int main(){ int S,F; cin >> S >> F ; if(S % F == 0) cout << S/F +1 <<'\n'; else cout << 1 + S/F << endl; return 0; }