PROGRAMMING:Three numbers output from small to large
Input three integers x, y, Z, please output these three numbers from small to large.
###Input format:
Enter three integers directly in one line, separated by a space.
###Output format:
In one line, the results are output in the order of "x = minimum, y = minor, z = maximum". The maximum, minor and minimum values are output as is, without width control.
###Input example:
```in
2 1 3
```
###Output example:
```out
x=1,y=2,z=3
```
answer:If there is no answer, please comment
###Input format:
Enter three integers directly in one line, separated by a space.
###Output format:
In one line, the results are output in the order of "x = minimum, y = minor, z = maximum". The maximum, minor and minimum values are output as is, without width control.
###Input example:
```in
2 1 3
```
###Output example:
```out
x=1,y=2,z=3
```
answer:If there is no answer, please comment