Python, like Java, supports compound assignment operators. For example, the compound assignment
foo *= bar + baz
is equivalent to the ordinary assignment
foo = foo * (bar + baz)
Python, however, does not have decrement or increment operators; instead of writing something like
--foo
, one must write
foo -= 1
Fill in the placeholders so that the actual outputs match the expected outputs.