I am trying to design a recursive descent parser for the following grammar-
S -> SSyy|A|epsilon A -> AAzz|x|B B -> BBxx|y|epsilon
After