#include int main() { int N = 0; int K = 0; std::cin >> N; std::cin >> K; int mustdmg = 0; mustdmg = N / (K + 1); std::cout << mustdmg; return 0; }