regexp e1 { (a*)b }
regexp e2 { 'hola' }
/*
ENG: First we print the expressions.
ESP: Primero imprimimos las expresiones.
*/
print(e1);
print(e2);
/*
ENG: Now we obtain the concatenation.
ESP: Ahora obtenemos la concatenacion.
*/
exp=concatenation(e1,e2);