[type]
Parser

[grammar]
grammar T;
a : ('a'|'b')? 'c' {<InputText():writeln()>} ;

[start]
a

[input]
ac

[output]
"""ac
"""

