Write a program that has functions to multiply and divide numbers.
Requirements:
1) You must have functions named "multiply" and "divide". The functions must take two arguments and return the new value.
2) In the main function, ask the user for two numbers and then call the appropriate function. Finally, print the result from the function in the main function.
Enter a number: 2
Multiply by: 3
6
Enter a number: 6
Divide by: 2
3