박선진

exit

#include <iostream>
#include <string>
using namespace std;
void exit() {
string ex;
cin >> ex;
if (ex == "exit") cout << ex;
return;
}
int main() {
cout << "helloworld";
}
\ No newline at end of file
exit();
return 0;
}
......