Write a Python function get_temperature() that takes in a temperature in degrees Celsius and returns the corresponding temperature mode in the Temperature enum.
The function should return:
Temperature.FREEZINGif the temperature is below -5 degrees CelsiusTemperature.COLDif the temperature is between -5 and 10 degrees Celsius (inclusive)Temperature.MODERATEif the temperature is between 11 and 25 degrees Celsius (inclusive)Temperature.WARMif the temperature is between 26 and 35 degrees Celsius (inclusive)Temperature.HOTif the temperature is above 35 degrees Celsius