Notice that any multiple of 12 is the same as 0: counting 12 takes you exactly once around the circle. So if a number is divisible by 12, its standard name is 0.
For example,
12 = 0;
24 = 0;
1236 = 0;
-12 = 0;
-72 = 0.
Numbers that are not divisible by 12 can be split into two parts: one part that is a multiple of 12, and the remainder. For example,
The easiest way to find the remainder after taking out multiples of 12 is
long division.
html">modular arithmetic page.