grammar sinfng{
terminal a,b;
nonterminal A,B,C;
axiom A;
productions{
A:=B C;
B:=C A|a;
C:=A B|b;
}
}
/*
ENG: The grammar will be used to illustrate the FNG (Greibach Nomal
Form), in this process the elements of the grammar (terminals and
non terminals) will be renamed.
ESP: Es una gramatica a la que vamos a aplicar el algoritmo de
la Forma Normal de Greibach, en este proceso se nos renombrara
los elementos de la gramatica (los terminales y no terminales).
*/
print(sinfng);
confng=fng(sinfng);