Write a driver program that uses the function template in Exercise 1 to find the average of:
(a) twoints;
(b) two floats;
(c) two doubles.
Exercise 1
Write a function template to find the average of two values. (The average of a and b is (a + b) / 2.)