최용욱

good

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