sju0924

add exit and branch exit

#include <iostream>
#include <string>
using namespace std;
int main()
{
string str;
while(1){
cin>>str;
if(str == "exit") exit(0);
}
}
\ No newline at end of file
No preview for this file type