#include using namespace std; static void setup() { cin.tie(0); ios::sync_with_stdio(false); } int main(int argc, char **argv) { setup(); int s, f; cin >> s >> f; auto n = (s / f) + 1; cout << n << endl; return 0; }