알고리즘

[알고리즘] 백준 3765 - Celebrity jeopardy (C++)

blueberrysoda 2025. 5. 11. 23:37

[문제 링크] : https://www.acmicpc.net/problem/3765

#include <iostream>
#include <string>
using namespace std;

int main(){
    string S;

    while(getline(cin, S)){
        cout << S << "\n";
    }
    return 0;
}