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