Getting digits from integers.
nUsing the % and / operator, we can extract each digit.
nSuppose a combination 123.
n123 % 10 -> 3
n123 / 10 -> 12
n12 % 10 -> 2
n12 / 10 -> 1
n% 10 gets the last digit and / 10 get the remaining digits.