진재영

exit program added

Showing 1 changed file with 13 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main(void){
string input;
cin >> input;
if (input == "exit") {
return 0;
}
}