#include<iostream>
#include <iomanip>
#include<math.h>
using namespace std;
int main()
{
double L,R;
cin>>L>>R;
double x,y;
x=R*cos(L/R);
y=R*sin(L/R);
cout << fixed<< setprecision(3) << x << ' '<<y<<endl;
cout << fixed<< setprecision(3) << x << ' '<<-y;
return 0;
}
这个题有点简单,,,,