#include using namespace std; typedef long long ll; typedef long double ld; int main(int argc, char *argv[]) { ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr); ll w,d;cin>>w>>d; while(d>1){ w -= (w / (d * d)); d--; } cout<<(w / (d * d))<