.
In a certain region all license plates are composed of three letters followed by three numbers,
or three numbers followed by three letters. The only restriction is that zero can never be
the first of the three numbers if the three numbers come first.
Find how many license plates are possible.
~~~~~~~~~~~~~~~~~~~~~~~~
The solution in the post by Glaviolette is incorrect.
So I came to bring a correct solution in three simple clear steps.
(1) if 3 digits go first, followed by 3 letters, with the imposed restrictions,
then the number of plates is 9*10*10*26*26*26 = 15818400.
(2) if 3 letters go first, followed by 3 digits (no restrictions in this case)
then the number of plates is 26*26*26*10*10*10 = 17576000.
(3) The answer is the sum of these numbers 15818400 + 17576000 = 33394400.
Solved.