#include #include int main() { int s, f, a; scanf("%d%d", &s, &f); s += f; a = ((s - s % f) / f); printf("%d", a); return 0; }