PROGRAMMING:Output the minimum value of each row of a two-dimensional array
This problem requires programming, output a given M × N is the minimum value of the elements in each row of the matrix.
###Input format:
Enter the first line to give two positive integers m and n (1 ≤ m, n ≤ 10). Then m lines, each line gives n integers separated by spaces.
###Output format:
Each row outputs the minimum value of the corresponding matrix row element.
###Input example:
```in
3 4
3 1 5 2
1 -4 6 7
1 0 2 3
```
###Output example:
```out
one
-4
0
```
answer:If there is no answer, please comment
###Input format:
Enter the first line to give two positive integers m and n (1 ≤ m, n ≤ 10). Then m lines, each line gives n integers separated by spaces.
###Output format:
Each row outputs the minimum value of the corresponding matrix row element.
###Input example:
```in
3 4
3 1 5 2
1 -4 6 7
1 0 2 3
```
###Output example:
```out
one
-4
0
```
answer:If there is no answer, please comment