Consider the following translation rules for the grammer G:
What is the output produced for the input abebebe using the bottom-up parsing with above translation ?
S → a (print ''C'') A
A → b {print ''B''} B
C → c {print ''R''}
A → ∈ {print ''B''}
B → e {print ''P''} A
B → ∈ {print ''A''}