public class ASTNum implements IASTNode {
   private int val;
   
   ASTNum(int it) { val = it; }

   public int evaluate() { return val; }
}

