%token i %token plus %token mul %token left %token right %% E: E plus T | T ; T: T mul F | F ; F: left E right | i ; %%