Em trang trí

View as PDF

Points: 100 Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

Nhập vào một số \(n\).

In ra \(n\) dòng, dòng thứ \(i\) in ra \(i * i\) ký tự * liên tiếp nhau.

Input

  • Một dòng duy nhất chứa một số \(n\) (\(n \le 100\)).

Output

  • In ra \(n\) dòng theo yêu cầu đề bài

Sample

Test 1

Input
3
Output
*
****
*********
Note

Hàng 1 có 1 dấu sao, hàng 2 có \(2 \times 2 = 4\) dấu sao, hàng 3 có \(3 \times 3 = 9\) dấu sao


Comments

There are no comments at the moment.