정세호

Merge branch 'exit' into 'master'

push exit program from exit branch, B repository



See merge request !1
......@@ -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
......