Checkpoint/Challenge
Create a new folder called program3 and new python file called python3.py

If you can write this program without any help, definitely do that.
If you need help, a help sheet will be available at the end of this file.
If you are completely unfamiliar with Python Functions, take a minute to read this page
Write a program with:
- A function called echo_user_input
- This program will accept one argument
- This program will print whatever is passed in as the first argument.
- A function called ask_for_input
- This function should have no arguments
- This function will read whatever the user types into a variable
- This function will return the variable containing the user input. (Not print it)
- A function called add_two_numbers.
- This function will take 2 arguments
- This function will add the 2 arguments together
- This function will print the sum. (Not return it)
- A function called multiply_three_number
- This function will take 3 arguments
- This function will multiply the 3 numbers together
- This function will return the value (not print it!)
- A function called determine_largest
- This function will accept 2 arguments
- This function will print the larger of the 2 arguments.
Your program should:
- Ask the user to type something in:
- Ask the user:
- Pick a number
- Pick a number
- Ask the user:
- Pick a number
- Pick a number
- Pick a number
- Print the product of these numbers
- Ask the user to:
- Pick a number
- Pick a number
- Print the largest of the two values
Screenshot the code and the running program for credit.