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