#P188D. Asterisks

    普及- ID: 7922 远端评测题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>*special problemimplementation*1100

Asterisks

Description

You are given a number n. Print n lines, i-th line should consist of i characters "*". Lines' indices are 1-based.

The only line of input contains an integer n (1 ≤ n ≤ 50).

Output the described pattern.

Input

The only line of input contains an integer n (1 ≤ n ≤ 50).

Output

Output the described pattern.

3

6

*
**
***

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