void increaseStack() {
     if (SP == stack.size()) {
         stack.resize(SP * 2);
     }
 }