Postfix Notation
10/69
Gist: Every operator occurs behind  its operands.
Note: Postfix notation is achievable by the
           postorder traversal of AST.
Infix notation Postfix notation
a + b a b +       
a = b a b =
if C then S1 else S2 C S1 S2 if-then-else
Example: