1423: 杨辉三角(左齐)wk

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:8 Solved:2

Description

输入一个n,输出n行的杨辉三角。

Input

输入一个正整数n

Output

一个n行的杨辉三角

Sample Input Copy

7

Sample Output Copy

1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1

HINT