PROGRAMMING:Geometric transformation of plane points by array
This topic to achieve two-dimensional geometric transformation of plane point, read the coordinates of the point, the type and parameters of transformation, and then output the geometric coordinates after transformation.
###Input format:
The plane coordinates of points appear in pairs, the two values are separated by commas, and the data type is integer. The transformation types are represented by integer numbers. 1, 2 and 3 correspond to translation, scaling and rotation respectively. The translation parameters are in the form of coordinate pairs, separated by commas, and the data type is double. The two zoom parameters are separated by commas and are of type double. Rotation is represented by angle, positive value is counter clockwise, negative value is clockwise, integer.
###Output format:
The output is the coordinates of the rotated points, separated by commas, integer.
###Input example:
Here is the input of a translation transformation. For example:
```in
5,7
one
1.2,2
```
###Output example:
The corresponding output is given here. For example:
```out
6,9
```
###Input sample 2:
Here is the input of a rotation transformation. For example:
```in
1,0
three
ninety
```
###Output sample 2:
The corresponding output is given here. For example:
```out
0,1
```
answer:If there is no answer, please comment
###Input format:
The plane coordinates of points appear in pairs, the two values are separated by commas, and the data type is integer. The transformation types are represented by integer numbers. 1, 2 and 3 correspond to translation, scaling and rotation respectively. The translation parameters are in the form of coordinate pairs, separated by commas, and the data type is double. The two zoom parameters are separated by commas and are of type double. Rotation is represented by angle, positive value is counter clockwise, negative value is clockwise, integer.
###Output format:
The output is the coordinates of the rotated points, separated by commas, integer.
###Input example:
Here is the input of a translation transformation. For example:
```in
5,7
one
1.2,2
```
###Output example:
The corresponding output is given here. For example:
```out
6,9
```
###Input sample 2:
Here is the input of a rotation transformation. For example:
```in
1,0
three
ninety
```
###Output sample 2:
The corresponding output is given here. For example:
```out
0,1
```
answer:If there is no answer, please comment