#include <bits/stdc++.h>
using namespace std;

int main() {
  int s, t;
  cin >> s >> t;
  
  cout << s / t + 1 << endl;
}