#include using namespace std; int main() { int s; int f; cin >> s >> f; cout << s / f + 1 << endl; }