#include int main(void) { int a, b, c,d; scanf("%d %d",&a, &b); c = a/b; d = a%b; if(d>0){ c++; } printf("%d\n", c); return 0; }