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