Part 1 Pseudocode (50 Points) You are writing a program for classifying tornadoes using the Enhanced Fujita Scale for the National Weather Service. The program begins by asking the weather watcher to enter the number of tornado reports that are being classified for that day. Validate the number of tornado reports with a loop to ensure that it is at least 0. Then use the valid number of tornado reports in a counter controlled loop (for loop or counter controlled while loop) to control the program. You will ask the weather watcher to input the report number, and the wind speed measured for the tornado. Validate the wind speed measured with a loop to make sure that it is at least 65. The Enhanced Fujita Scale is as follows: 65-85 mph: EF-0 86-110 mph: EF-1 111-135 mph: EF-2 136-165 mph: EF-3 166-200 mph: EF-4 >200 mph: EF-5