Beispiel #1
0
main(){
	try{
		while(cin >> input_word)
			if(!CheckWord()){
				Output(false);
				return 0;
			}
		Output(stack.is_empty());
	}
	catch(...){
		Output(false);
	}
	return 0;
}