[백준] 별 찍기 -1 2438

Soohyeon B·2022년 10월 17일
0

알고리즘 문제 풀이

목록 보기
11/70

풀이

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


int main (void){
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    
    int n;
    cin >> n;
    while(n--){
        string t;
        cin >> t;
        cout << t << "\n";
    }
    
}
profile
하루하루 성장하는 BE 개발자

0개의 댓글