a. Write a header file that defines a function template that takes as input three numbers, a, b, and c, and determines if they can be used in a correct arithmetic formula (in the given order), like "a+b = c," "a = b-c," or "a*b = c."
b. Write a test program that uses the function template above on three numbers of integers and three numbers of doubles.
c++