#include using namespace std; #define all(v) v.begin(),v.end() using ll = long long; using ull = unsigned long long; using vll=vector; using vvll = vector>; using P = pair; using vp=vector>; const ll INF=1ll<<60; ll mod10=1e9+7; ll mod99=998244353; const double PI = acos(-1); #define rep(i,n) for (ll i=0;i=0;--i) #define rep2(i,a,n) for (ll i=a;i=n;--i) int main(){ double R; ll N; cin>>R>>N; vector ans; if(N%2)ans.push_back(0); double S=R*R*PI/(N+1); rep(i,N/2){ double l=0,r=R+0.000001; double s=((N%2?1:0.5)+i)*S; while(r-l>1e-9){ double m=(l+r)/2; double o=2*acos(m/R); double ss=0.5*(R*R)*sin(o)+0.5*R*R*(PI-o); if(ss<=s)l=m; else r=m; } ans.push_back(l); ans.push_back(-l); } sort(all(ans)); for(auto x:ans){ cout << fixed<