Add Function 1

Write a program add_function1.py that has an add() function defined in it. The add() function should take two parameters and then print out the sum of those two values from within the function.

The main() program should have the user enter two numeric values, and then call the add() function with those values so that the function can print out their sum.

Sample interaction:

Enter a number: 3
Enter another number: 2.5
By sending these two numbers to a function, I have calculated the sum as 5.5