#include int main(){ int S,F; int count=0; scanf("%d %d",&S,&F); while(S>=0){ S-=F; count++; } printf("%d\n",count); return 0; }