1Java has one important arithmetical operator you may not be familiar
2with, %, also known as the modulus or remainder operator.
3The % operator returns the remainder of two numbers.
4For instance:
5* 10 % 3 => 1 because 10 divided by 3 leaves a remainder of 1