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