#include #include #include #include #include #include #include #include #include #define rep(i,n) for(int i=0;i P; const int dx[4] = {0,1,0,-1}; const int dy[4] = {1,0,-1,0}; template inline bool chmax(T &a,T& b){if(a < b){a = b; return true;} else return false;} template inline bool chmin(T &a,T& b){if(a > b){a = b; return true;} else return false;} //struct area //function area //main area int main(){ int s, f; cin >> s >> f; cout << s/f + 1 << endl; } /* 1Fにつき3段とする 0 1 2 3 4 5 6 7 8 9 1 1 1 2 2 2 3 3 3 4 */