grammar g{
terminal a,b,d;
nonterminal S,B,C;
axiom S;
productions{
S:=C a| B;
B:=b;
C:= a b d;
}
}
/*
ENG: Now we print the context free grammar and
obtain the equivalent stack automaton.
ESP: Ahora imprimimos la gramatica libre de
contexto y obtenemos el automata a pila
equivalente.
*/
print(g);
ap=CFGtoPDA(g);