1grammar t032subrulePredict; 2options { 3 language = Python3; 4} 5 6a: 'BEGIN' b WS+ 'END'; 7b: ( WS+ 'A' )+; 8WS: ' '; 9