정세호

commit echo_program in A


#include <iostream>
#include <iomanip>
using namespace std;
int main() {
string s;
while (true) {
cout << "if you enter 'exit', the program will exit: ";
cin >> s;
if (s == "exit") {
break;
exit(100);
}
cout << s << endl;
}
}
\ No newline at end of file