%token B %token W %token EOL %start main %% seq : {} | seq B {} | seq W {} ; ending : {} | W W W {} ; main : seq ending EOL {}