Mental Model
We use a stack to reorder operators so that expressions can be evaluated without parentheses.
Analogy: Imagine a chef stacking ingredients in order to prepare a sandwich without needing to look back at the recipe each time.
Infix expression: A + B * C Stack: empty Postfix output: empty
