PROGRAMMING:Polar coordinates → rectangular coordinates
Please write a program to input the polar coordinates of the point ($$R $$, $$$theta $$), and output the rectangular coordinates ($$x $$, $$y $$).
####Input format
>$$R $$and $$theta$$
Where: $$$theta $$is in radians.
####Output format
>$$x $$and $$Y$$
Requirements: $$x $$, $$y $$all output 4 decimal places (rounding the last place).
####Input sample
```in
1.5 0.9272952180016122324285
```
####Output sample
```out
0.9000 1.2000
```
answer:If there is no answer, please comment
####Input format
>$$R $$and $$theta$$
Where: $$$theta $$is in radians.
####Output format
>$$x $$and $$Y$$
Requirements: $$x $$, $$y $$all output 4 decimal places (rounding the last place).
####Input sample
```in
1.5 0.9272952180016122324285
```
####Output sample
```out
0.9000 1.2000
```
answer:If there is no answer, please comment