송재혁

echo program(exit included)

#include <iostream>
#include <string>
using namespace std;
int main()
{
string input;
getline(cin, input);
cout << "Input : " << input << endl;
return 0;
}
\ No newline at end of file