#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 11 number in the first row, the first 22 numbers in the second row, and the first nn numbers in the nn-th row.

Input Format

First line contains the size of the matrix nn.
Lines 22 to n+1n+1 contain the matrix elements (1n1001 \le n \le 100, 11 \le all numbers 1000\le 1000).

Output Format

Output nn lines.
First line contains the first number of the matrix.
Second line contains the first 22 numbers of the matrix.
... ...
nn-th line contains the first nn numbers of the matrix.

Sample

4
1 2 4 3
3 4 5 6
6 4 7 9
9 3 4 5
1
3 4
6 4 7
9 3 4 5