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