public PrgState execute(PrgState state)
        {
            MyIList <int> ot = state.getOut();
            MyIDictionary <String, int> symTbl = state.getSymTable();

            ot.add(exp.eval(state.getSymTable()));
            return(state);
        }