I\'m creating a program that evaluates postfix expression, e.g. 12 2 + 3 * means (12+2)*3 = 42. I want to push the numbers in a stack
12 2 + 3 *
(12+2)*3 = 42
push