Problem I: 字母金字塔(for双重循环、设置域宽)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:16 Solved:12

Description

输入一个小写字母,输出字母金字塔。
例如字母是z,输出以下图形:
             a
           a   b
        a    b   c  
      .            .
    a  b  c ……  y  z

Input

输入一个小写字母

Output

输出字母金字塔

Sample Input Copy

c

Sample Output Copy

  a
 a b
a b c