The /= operator divides a variable by another number.
/=
myVar = myVar / 5;
Will divide myVar by 5. This can be rewritten as:
myVar
5
myVar /= 5;
Convert the assignments for a, b, and c to use the /= operator.
a
b
c