#include #include #include #include using namespace std; int main() { int a, b; double c; cin >> a >> b; c = ceil(a / b); cout << c << endl; }