include<bits/stdc++.h>//万能头文件

using namespace std;
int main () {
int n;
while(cin >> n){//多组输入
for(int i = 1; i <= n; i++){/i<n:高
for(int j = 0; j < i; j++)//j<=i:底
cout << "* ";//输出图案
cout << endl;//换行
}
}
return 0;
}