#include using namespace std; struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star; int main() { int S,F; cin >> S >> F; cout << ( S < F ? 1 : S / F + 1 ) << endl; return 0; }