Write a program to generate 100 random integers
in the range of 0 and 99999, nd the frequency count of each digit (0, 1, 2, . . . , 9) in these numbers,
and print a frequency histogram.

This is...