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