1038: 打印金字塔

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

Description

给一个n,输出高度为n的金字塔

Input

整数n

Output

高度为n的金字塔

Sample Input Copy

5

Sample Output Copy

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

HINT

n<=10

Source/Category