#################### # Name : # UTA ID : # Lab assignment #2 # Program purpose : # Read in a value from the user naming it typetest. # Determine the type of the input value and print messages as follows: # For type int, print a message stating that the value is integer and # print the value # For type float, print a message stating that the value is floating # point and print the value # For type str, print a message stating that the value is a string and # print the value # Required components : # type function, if and elif control structures #################### ### main ###