#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; for(int j=1;j<=a;j++){ for(int i=1;i<=j;i++){ cout<<"*"; } cout<<endl; } }