Given the following grammar G: S rightarrow E E rightarrow E + T | T T rightarrow id | (E) a). Build the LR (0) Automata for G: b). Building the SLR Parsing Table for G: c). Parse the string “id + id”. Show the stack, the input, and the action taken.