The *= operator is a compound assignment operator that multiplies the left operand (x) by the result of the expression on the right (2 + 3).
So, x *= 2 + 3 is equivalent to x = x * (2 + 3), which results in x = 5 * 5, giving x the value 25.