Problem1225--练37.3 图形的窍门2

1225: 练37.3 图形的窍门2

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

Description

试编一个程序,输出如图所示的三角形,其高度为2*n-1, n为输入
    *
   ***
  *****
 *******
*********

Input

一个整数n

Output

高度为2*n-1的三角形

Sample Input Copy

3

Sample Output Copy

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