Find the number of trailing zeroes in the product
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Trailing zeroes will be produced by the power of 10 in the number , which in turn is 2*5. Since the number of 2's will always be greater than the the number of 5's , we only need to count the number of 5's which is the sum of powers of multiples of 5 from 5-50 where 25 and 50 have to be taken twice for the double power of 5 . Adding, we get 362.