For example, ```python a = 7 b = 32 c = a * b ``` could be rewritten as ```python b = 32 a = 7 c = a * b ``` but not as ```python a = 7 c = a * b b = 32 ```