Submission

Status:

PPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: cyblox_boi

Problemset: Star Tower Builder

Language: cpp

Time: 0.003 second

Submitted On: 2025-12-29 22:17:39

#include <bits/stdc++.h>
using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n;
    cin >> n;

    for (int i = 1; i <= n; i++)
    {
        cout << string(i, '*') << '\n';
    }

    return 0;
}