Problem:
Question 1- Write a program that accepts any number of monthly sales amounts . Display the total of the values. Display a report showing each original value entered and the percentage that value contribute to the total . You may prompt the user for the number of values to be inputted.
Question 2- Write a program to converts temperatures between Fahrenheit and Celsius. Your program should print a brief message describing what it does, and then prompt the user to enter "1" if they would like to convert a Fahrenheit number to Celsius, or "2" to convert a Celsius number to Fahrenheit. Then, allow the user to enter the number to be converted. Your program should call a function to perform the conversion and display the resulting value to the screen.
Show the code, demonstrate it works properly and describe what it is doing.