Modulus AND assignment operator. It takes modulus using two operands and assigns the result to the left operand.
It means that consider a number a that is being divided by b.
So we have to divide a by b and store the quotient value in a itself.
General syntax is:a=a/b;
Short is :a/=b;