Exercise: Use times-equal operator to shorten the code

Here we multiply the value of a with 5. There's is another way to do this. Adjust the code below. Use the times-equal operator to update the value of variable a.
a = 5
a = a * 5
print(a)
Python
Setting up Python environment...
Output