PROGRAMMING:Sort each column of two dimensional array
A four × 5 integer two-dimensional array, input data from the keyboard, and the array of each column in the order from small to large output.
###Input format:
Enter a matrix of 4 rows and 5 columns. There is no space before the first number in each row, and there is a space between each number in each row.
###Output format:
Output 4 rows and 5 columns of matrix, there is no space before the first number of each row, each number output occupies 4 columns width.
###Input example:
```in
5 1 1 4 2
1 2 3 4 5
8 4 5 2 1
7 5 3 6 4
```
###Output example:
```out
1 1 1 2 1
5 2 3 4 2
7 4 3 4 4
8 5 5 6 5
```
answer:If there is no answer, please comment
###Input format:
Enter a matrix of 4 rows and 5 columns. There is no space before the first number in each row, and there is a space between each number in each row.
###Output format:
Output 4 rows and 5 columns of matrix, there is no space before the first number of each row, each number output occupies 4 columns width.
###Input example:
```in
5 1 1 4 2
1 2 3 4 5
8 4 5 2 1
7 5 3 6 4
```
###Output example:
```out
1 1 1 2 1
5 2 3 4 2
7 4 3 4 4
8 5 5 6 5
```
answer:If there is no answer, please comment