// meow.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>

using namespace std;

int main()
{
   
	int n;
	cin >> n;
	int j = 1;

	for (int i = 0; i < n; i++)
	{

		for (int f = 0; j > f; f++)
		{
			cout << "*";

		}
		j++;
		cout << "\n";

	}
	
	return 0;
}