서연진

echo exit

......@@ -6,6 +6,9 @@ int main() {
string x;
while (true) {
cin >> x;
if (x == "exit") {
break;
}
cout << x << endl;
}
return 0;
......