Solution
The correct answer is 14
EXPLANATION:
- Scan the expression from left to right.
- When you encounter a number, push it onto the stack.
- When you encounter an operator, pop the required number of operands from the stack, perform the operation, and push the result back onto the stack.
- step by step:

So, the correct answer is 14