#include using namespace std; int main() { int w, d; cin >> w >> d; int y = 0; while (w > 0) { y = w / (d * d); w -= y; d--; } cout << y; return 0; }