김상우

exit

Showing 1 changed file with 15 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main() {
string a;
while (true) {
cout << "ÀÔ·Â" << endl;
cin >> a;
if (a == "exit")
break;
cout << a;
}
}
\ No newline at end of file