#1124. 输出直角三角形2

输出直角三角形2

No submission language available for this problem.

Background

Special for beginners, ^_^

Description

输入一个整数 n ,按要求输出直角三角形。

例如 n = 3

  *
 **
***

Format

Input

一个整数 n

Output

n 行的直角三角形。

Samples

3
  *
 **
***

Limitation

1 <= n <= 10

1s, 1024KiB for each test case.