하재정

add exit.cpp

Showing 1 changed file with 9 additions and 0 deletions
#include <iostream>
#include <string>
int main() {
std::string input;
std::cin >> input;
if (input == "exit")
exit(0);
}
\ No newline at end of file