Question 1192161
.
Standard automobile license plates in a country display 2 {{{highlight(cross(numbers))}}} <U>digits</U>, 
followed by 4 letters, followed by 2 {{{highlight(cross(numbers))}}} <U>digits</U>..
How many different standard plates are possible in this system? 
(Assume repetitions of letters and numbers are allowed.)
~~~~~~~~~~~~~~~~~~


<pre>
There are 26 letters and 10 digits.


The number of different standard plates is  {{{10^2*26^4*10^2}}} = 4569760000.


The formula is SELF-EXPLANATORY.
</pre>

Solved.