fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main() {
  5. string input;
  6. cin >> input;
  7. cout << "echo " << input << endl;
  8. return 0;
  9. }
Success #stdin #stdout 0s 3432KB
stdin
test123
stdout
echo test123