Write a Python program that computes certain values such as sum,
product, max, min and average of any 5 given numbers along with the
following requirements.
Define a function that takes 5 numbers, calculates and returns
the sum of the numbers.
Define a function that takes 5 numbers, calculates and returns
the product of the numbers.
Define a function that takes 5 numbers, calculates and returns
the average of the numbers. Must use the function you defined
earlier to find...