#include main(){ int A,B; scanf("%d%d",&A,&B); if(A % B == 0){ printf("%d\n",A/B); }else{ printf("%d\n",A/B+1); } }