intevalRPN(vector<string>&tokens){stack<int>st;for(autos:tokens){if(s=="+"||s=="-"||s=="*"||s=="/"){autox2=st.top();st.pop();autox1=st.top();st.pop();if(s=="+")st.push(x1+x2);if(s=="-")st.push(x1-x2);if(s=="*")st.push(x1*x2);if(s=="/")st.push(x1/x2);}elsest.push(stoi(s));// a string into an integer}returnst.top();}