#637. 输出直角三角形

输出直角三角形

No submission language available for this problem.

Background

就是个输出啊,选手!

Description

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

例如 n = 3;

*
**
***

Format

Input

一个整数 n

Output

n 行的直角三角形。

Samples

4
*
**
***
****

Limitation

2<=n<=40