#include using namespace std; int main(){ int a, b, c = 0; cin >> a >> b; while(b <= a){ a -= b; c++; } c++; cout << c << endl; return 0; }