Arithmetic operators are evaluated within an expression from left to right, in the following order of precedence:
Unary Plus ( + ) and Minus ( - )
Multiplication ( * ) and Division ( / )
Addition ( + ) and Subtraction ( - )
Parentheses may be employed, however, to override the order of evaluation. Expressions within parentheses are evaluated before other parts of the expression. Within a level of precedence, operations are performed in order from left to right. Expressions that use arithmetic operators require numeric operands, and always produce numeric values.