Submission
Status:
PPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: nongkun4444
Problemset: Star Tower Builder
Language: cpp
Time: 0.003 second
Submitted On: 2025-12-28 19:38:30
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include<bits/stdc++.h>
using namespace std;
int main(){
int N;
cin>>N;
for(int i=1;i<=N;i++) {
for(int j=1;j<=i;j++) {
cout<<"*";
}
cout<<endl;
}
}