정세호

push exit program from exit branch, B repository

......@@ -4,11 +4,13 @@
using namespace std;
int main() {
string s;
cout << "if you enter 'exit', the program will exit";
while (true) {
cin >> s;
cout << s << endl;
if(s=="exit"){
break;
}
cout << s << endl;
}
exit(100);
}
\ No newline at end of file
......