# the % symbol gives us the remainder of a quotient # examples >>> 23 % 5 # should be 3 3 >>> 25 % 5 # no remainder, so should be 0 0