Ok, next one. This time we focus on operators. In this case we need a screenshot instead of code only. Help me: what is this code doing?
[EXERCISE 0009] Compound assignments
The compound assignment operators consist of a binary operator and the simple assignment operator. They perform the operation of the binary operator on both operands and store the result of that operation into the left operand, which must be a modifiable lvalue. So lets go: transform this snippet back to C++ code!