#include int main() { using namespace std; int A, B; cin >> A >> B; cout << (A / B + (A % B == 0 ? 0 : 1)) << endl; return 0; }