I just started learning Python 3 and I have the following problem to solve:
"Write a program that computes the sum of the logarithms of all the primes from 1 to some number n, and print out the sum of the logs of the primes.
a. input: integer n
b. output: the sum of log(1),log(2),log(3),...,log(n) (the base of log is 10)"