Example: For expression ( 5 + 3 ), the steps are:
1. Push '(' → Push '+' → Output 5 → Output 3
2. Pop and select "To Output" (outputs '+') → Pop and select "To Ignore" (removes '(')
3. Final output: 5 3 +

Push to Stack

To Output

To Ignore

Type to output

Output:

Observations: