원영섭

echo.cpp added

Showing 1 changed file with 8 additions and 0 deletions
#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";
}
\ No newline at end of file