본문 바로가기
Algorithm 🧑🏻‍💻/백준(BOJ)

[백준,c++] 11718번 - 그대로 출력하기

by dkswnkk 2021. 10. 31.
#include <iostream>
#include <string>
using namespace std;

string s;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    while (getline(cin, s)) {
        cout << s << "\n";
    }
}

댓글