echo.cpp 168 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 #include <iostream> #include <string> int main() { std::string a; std::cout << "Enter any word you want to echo: "; std::cin >> a; std::cout << "\n" << a << "\n"; }