PROGRAMMING:Mixed type data format input
This problem requires the preparation of procedures, read in the order of floating-point number 1, integer, character, floating-point number 2, and then in accordance with the order of character, integer, floating-point number 1, floating-point number 2 output.
###Input format:
Input in one line to give floating-point number 1, integer, character, floating-point number 2, separated by a space.
###Output format:
Output in the order of character, integer, floating-point number 1 and floating-point number 2 in one line, in which the floating-point number retains 2 digits after the decimal point.
###Input example:
```in
2.12 88 c 4.7
```
###Output example:
```out
c 88 2.12 4.70
```
answer:If there is no answer, please comment
###Input format:
Input in one line to give floating-point number 1, integer, character, floating-point number 2, separated by a space.
###Output format:
Output in the order of character, integer, floating-point number 1 and floating-point number 2 in one line, in which the floating-point number retains 2 digits after the decimal point.
###Input example:
```in
2.12 88 c 4.7
```
###Output example:
```out
c 88 2.12 4.70
```
answer:If there is no answer, please comment