// The command consists string of "G", "()" and/or "(al)" in some order // The code will interpret "G" as the string "G", "()" as the string "o", and "(al)" as the string "al". // The interpreted strings are then concatenated in the original order. // return the interpretation of command. #include using namespace std; int main() { string s,final=""; cin>>s; for(int i=0;i