Question 3 (20 points) Write a program that prints proper air control messages according to temperature and humidity. The user should provide the values for the temperature and humidity. Remember that the temperature doesn't have to be whole numbers. The program prints the following message depending on the following:
For temperature below 68, it prints "Turn on the heater."
For temperature between 68 and 79 (including 68 and 79):
- If the humidity level is below 0.5, it prints "Open the windows to get fresh air."
- Otherwise, it prints "Turn on the dehumidifier."
For temperature above 79, it prints "Turn on the cooler.