MapleStory Finger Point Cute Line Smiley Blinking Hello Kitty Angel MapleStory Finger Point

๐Ÿƒ‍โ™‚๏ธBaekjoon/C++

หšโ‚Šโœฉโ€งโ‚Š [2438/Cpp] ๋ณ„ ์ฐ๊ธฐ -1 หšโ‚Šโœฉโ€งโ‚Š

HYEJU01 2021. 9. 6. 18:28
#include<iostream>
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 << "\n";
    }
    
return 0;
}