Blame view

P29973_en/S001-AC.cc 199 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <string>

using namespace std;

int main()
{
	int n;
	cin >> n;
	for(int i = 0; i < n; i++)
	{
		for(int j = -1; j < i; j++)
		{
			cout << "*";
		}
		cout << endl;
	}
}