View Code of Problem 123

#include <bits/stdc++.h>

using namespace std;

int main() {
    string s;
    while (getline(cin, s)) {
        cout << s << endl;
    }
    return 0;
}

Double click to view unformatted code.


Back to problem 123