Create a recursive program that asks the user to enter a string. Then the program outputs a string consisting of every second letter of the input string. For example, if the user enters computational, the output from the program is opttoa.
Note: For full credit:
You must use recursion (i.e. a recursive module) to create this program. If you use a loop instead of recursion for this program you will receive 0 for this problem.
You must use parameters to pass information to the module.
The inputs and outputs must include appropriate sentences.