1006: 【入门】打印星号三角行

Memory Limit:16 MB Time Limit:1.000 S
Creator:
Submit:6 Solved:4

Description

打印星号三角行.

Input

输入只有一行,包括1个整数N。N代表行数.

Output

输出N行.

Sample Input

5

Sample Output

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