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