PROGRAMMING:Split character
Enter a row of numbers. Suppose we treat each '5' in this row as a space, then we get some non negative integers separated by a space (some integers may start with '0', and the '0' in these headers should be ignored, unless the integer is composed of several '0', then the integer is 0).
Your task is to sort the output of the integers from small to large
###Input format:
The input contains multiple groups of test cases, and each group of input data has only one line of numbers (there is no space between the numbers), and the length of this line of numbers is not more than 1000. Input data guarantee: the non negative integer obtained by segmentation will not be greater than 100000000; The input data can not be all composed of '5'.
###Output format:
For each test case, the result of integer sorting is output. Two adjacent integers are separated by a space, and each group of output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
0051231232050775
01144475123511
```
###Output example:
The corresponding output is given here. For example:
```out
0 77 12312320
11 123 114447
```
answer:If there is no answer, please comment
Your task is to sort the output of the integers from small to large
###Input format:
The input contains multiple groups of test cases, and each group of input data has only one line of numbers (there is no space between the numbers), and the length of this line of numbers is not more than 1000. Input data guarantee: the non negative integer obtained by segmentation will not be greater than 100000000; The input data can not be all composed of '5'.
###Output format:
For each test case, the result of integer sorting is output. Two adjacent integers are separated by a space, and each group of output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
0051231232050775
01144475123511
```
###Output example:
The corresponding output is given here. For example:
```out
0 77 12312320
11 123 114447
```
answer:If there is no answer, please comment