#include int main() { int S,F,A; scanf("%d", &S); scanf("%d", &F); A = S / F; if(S % F != 0) { A++; } printf("%d", A); return 0; }