#include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int s,f; cin>>s>>f; int x; x=s/f; x++; cout<<x<<endl; return 0; }