Write a pseudocode for a program that reads a temperature as a whole number from a user and outputs a "probable" season (winter, sprint, summer, or fall) depending on the temperature. A temperature greater than or equal to 90, indicatessummer. A temperature greater than or equal to 70, and less than 90, indicatesspring. A temperature greater than or equal to 50, and less than 70, indicatesfall. A temperature that less than 50, indicateswinter. A temperature value entered that is greater than 110 or less than -5, should generate the output that the temperature entered is outside of the valid range.You should allow the program to loop/repeat until the user chooses to exit.