#ifndef PARSER_H
#define PARSER_H
long expression();
long relational();
long add();
long term();
long unary();
long factor();
#endif