[UVA] 12060 - All Integer Average
When we need to find the arithmetic average of some numbers we always tend to keep the result in a
floating-point number as in many cases the average is a fraction. But if all the numbers are integers
then we should not use floating-point numbers to store the average, as floa...