#include <iostream>
using namespace std;

int main()
{
    int n;
    cin >> n;
    
    int cnt = 2;
    
    for(int i = 0; i < n; i++)
    {
        for(int j = 1; j < cnt; j++)
        {
            cout << "*";
        }
        cnt++;
        cout << "\n";
    }
    
 
    return 0;
}

카테고리:

업데이트:

댓글남기기