jimin

If you enter 'exit', the program will exit

Showing 1 changed file with 6 additions and 2 deletions
......@@ -4,7 +4,11 @@
int main(){
whlie(1) {
string a;
cin>>a;
cout<<a;
cin >> a;
cout << a;
if (a == exit)
break;//exit
}
}
\ No newline at end of file
......