exit.cpp 126 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 #include <iostream> #include <string> int main() { std::string input; std::cin >> input; if (input == "exit") exit(0); }