#include using namespace std; int main(){ unsigned int S, F; cin >> S >> F; cout << (S / F)+1 << "\n"; return 0; }