Exercise: Use plus-equal operator to shorten the code

Here we add 10 to the value of a. There's is another way to do this. Adjust the code below. Use the plus-equal operator to update the value of variable a.
a = 10
a = a + 10
print(a)
Python
Setting up Python environment...
Output