#include <iostream>

using namespace std;
int main(){
    int s,t,ans;
    cin>>s>>t;
    ans=1+(s)/t;
    cout<<ans<<endl;
}