Problem2571--字母金字塔(1)

2571: 字母金字塔(1)

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 23  Solved: 17
[Status] [Submit] [Creator:]

Description

输入一个整数n(2<=n<=26),输出n行由对应字母构成的金字塔。

Input

输入一行,一个整数n(2<=n<=26)。

Output

输出n行由对应字母构成的金字塔(具体输出参照输入输出样例,字母间含单空格)。

Sample Input Copy

3

Sample Output Copy

a
a b
a b c

Source/Category