Multiplicative (*, /, %)
Multiplication, division, and modulo operators perform arithmetic operations with higher precedence than additive operators. Division by zero behavior is defined by the runtime implementation.
Multiplicative = Unary { ("*" | "/" | "%") Unary } ;
Examples:
quantity * price
total / count
value % 10