Write a recursive Scheme function merge(firstNameList, lastNamelist) that receives a simple list of first names and a simple list of last names, and merges the two lists into one list
Write a recursive Scheme function power(A, B) that takes two integer parameters, A and B, and returns A raised to the B power. A must be a positive value, but B maybe a negative value.