Evaluate an arithmetic expression in Reverse Polish Notation (RPN).
In RPN, operators come after their operands. ["2", "1", "+", "3", "*"] means (2 + 1) * 3 = 9.
Valid operators are +, -, *, /. Division truncates toward zero.
With ["4", "13", "5", "/", "+"], the answer is 6. Compute 13 / 5 = 2, then 4 + 2 = 6.
Constraints: tokens . Input always forms a valid expression.