Complete the program below named CountSevens
so that it reads in an integer value, counts the number of digits in that number
that have the value 7, and prints out the final count. For example, the
integer value, 57687728, would have 3 digits with the value 7.
Hint: you might consider using integer division or the modulus operator to separate out each digit of n.