Problem
Write a program that requests a file name from the user. Your program should complain if the file is not accessible and should request an alternative file. Your program should then process the data in the file: It should compute the product of all the integers in the file and the sum of all the floating-point values in the file. It should keep track of how many non-numeric data items are in the file. Your program should then report:
• The product of all the integers
• The sum of all the floats
• How many integers were discovered
• How many floats were discovered
• How many non-numeric items were discovered?