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