이인서

exit

Showing 1 changed file with 9 additions and 1 deletions
......@@ -2,7 +2,15 @@
using namespace std;
int main(){
cout << "test" << endl;
string a;
cin >> a;
if (a == "EXIT")
return EXIT;
else
cout << a << endl;
return 0;
}
\ No newline at end of file
......