import java_cup.runtime.*; import java.io.*; parser code {: public parser (String filename) throws Exception { this (new lexer (new FileInputStream (filename))); } :}; terminal PLUS, NUM; non terminal s, e, t; s::=e; e::=e PLUS t |t; t::=NUM;