%filenames parser
%debug

%token NR

%left '+'

%%

start:
    start expr
|
    // empty
;

expr:
    error
|
    NR
|
    expr '+' expr
;
