Using IDLE's editor, create a program and save it as number.py that prompts the user to enter a number and then displays the type of the number entered (integer, or float). For example, if the user enters 6, the output should be int. Be sure to use try:except and try:except:finally where appropriate to implement appropriate exception handling for situations where the user enters a string that cannot be converted to a number. 2. Write a program that prompts for two numbers. Add them together and print the result. Catch the ValueError if either input value is not a number, and print a friendly error message. Test your program by entering two numbers and then by entering some text instead of a number. Save your program as addition.py