Problem1178--金字塔

1178: 金字塔

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入N,输出N行的金字塔。如N=5,则打印下面的图形,
    *
   ***
  *****
 *******
*********

Input

输入N

Output

输出N行的金字塔

Sample Input Copy

5

Sample Output Copy

    *
   ***
  *****
 *******
*********

Source/Category