#P362. 练62.1 矩形的下三角
练62.1 矩形的下三角
Description
Output the lower triangular part of a matrix.
The lower triangular part of a matrix consists of the first number in the first row, the first numbers in the second row, and the first numbers in the -th row.
Input Format
First line contains the size of the matrix .
Lines to contain the matrix elements (, all numbers ).
Output Format
Output lines.
First line contains the first number of the matrix.
Second line contains the first numbers of the matrix.
... ...
-th line contains the first numbers of the matrix.
Sample
4
1 2 4 3
3 4 5 6
6 4 7 9
9 3 4 51
3 4
6 4 7
9 3 4 5