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