CS100, Spring 2000, Exercise 1, due in lecture, Thursday, Feb. 3 Reminder: Partners are not allowed for exercises. Write a program $exercise1$ that uses TokenReader to read in 3 temperatures --in degrees Celsius, not degrees Fahrenheit-- and classify each according to the following categories: + "too cool" when the temperature is strictly below 15 + "comfy" when the temperature is between 15 and 25, inclusive + "too warm" when the temperature is strictly above 25 Bonus [1 pt]: Use a loop and read in *6*, not *3*, temperatures. Turn in: + A printout of your program -- don't forget the info block at the top! + A printout of your program on the input sequence 5, 15, 55. [For the bonus, include 20, 25, and -30.]