echo_program_new.cpp 149 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include <iostream> #include <iomanip> using namespace std; int main() { string s; while (true) { cin >> s; cout << s << endl; } } }