PROGRAMMING:Three numbers
###Task description
```
Input three integers x, y, Z, please output these three numbers from small to large.
```
###Input format:
```
Several groups of data, each with three integers in a row.
```
###Output format:
```
Each group of data is output in a single line, and the three numbers are separated by a space.
```
###Input example:
```in
100 50 25
1 9 8
```
###Output example:
```out
25 50 100
1 8 9
```
answer:If there is no answer, please comment
```
Input three integers x, y, Z, please output these three numbers from small to large.
```
###Input format:
```
Several groups of data, each with three integers in a row.
```
###Output format:
```
Each group of data is output in a single line, and the three numbers are separated by a space.
```
###Input example:
```in
100 50 25
1 9 8
```
###Output example:
```out
25 50 100
1 8 9
```
answer:If there is no answer, please comment