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