진재영

exit program added

Showing 1 changed file with 13 additions and 0 deletions
1 +#include <iostream>
2 +#include <string>
3 +using namespace std;
4 +
5 +int main(void){
6 + string input;
7 +
8 + cin >> input;
9 +
10 + if (input == "exit") {
11 + return 0;
12 + }
13 +}