CMIS 102 In-class exercise. Write a Raptor program that converts between temperatures in the celsius and fahrenheit scales. The user is asked which direction the conversion is wanted in, i.e. C to F by inputting c, C, or celsius or Celsius, or F to C by inputting f, F, fahrenheit or Fahrenheit (the user can enter any one of these 8 values. Have some error message if none are.) then the temperature is input. The converted temperature is displayed, along with the degrees in Kelvin. See the images on the class web site as to how the output should be displayed. All the drawings should be done using varaibles for the width and height of the graphics window (i.e. do not use some fixed numbers like 1000 and 600 to calculate any coordinates). The formula for converting fahrenheit (F) to celsius (C) is C = 5(F-32)/9 The formula for converting celsius (C) to fahrenheit (F) is F = 9C/5+32 The formula for converting celsius (C) to Kelvin (K) is K = C + 273 Any mathematically equivalent formulas are acceptable, of course. The descriptive word is determined by this: celsius < 5: COLD 5 < celsius < 15: COOL 15 < celsius < 25: WARM celsius > 25: HOT Hand in a printout of the Raptor flowchart file by 10:00 along with two windowshots, showing two different descriptive word ranges.