#include using namespace std; #define REP(i,n) for(int i=0;i ostream& operator<<(ostream& os,const vector& vec){ os << "["; for(const auto& v : vec){ os << v << ","; } os << "]"; return os; } const long long mod = 1e9+7; typedef long long ll; typedef unsigned long long ull; typedef pair pii; typedef vector vi; typedef vector vvi; typedef vector vll; typedef vector vvll; int main(){ int s,f;cin>>s>>f; cout << s/f + 1<< endl; }