Create a function that takes a string and returns the right answer.
postfix("2 2 +") ➞ 4 postfix("2 2 /") ➞ 1 postfix("8 4 / 9 * 3 1 * /") ➞ 54
+ - * /