The input consists of a few test cases. For each test case, the first line of input is a positive integer N(1)<=N<=(100) which indicates the number of students. The following N lines contain 6 integers which represent the ratings cast by the students.
Output
Case #1: Course TTTK1114
Course 1: 2.8
Course 2: 2.7
Course 3: 2.5
Course 4: 2.6
Course 5: 2.6
Course 6: 2.5
Case #2: Course TTTT1713
Course 1: 3.1
Course 2: 2.9
Course 3: 3.8
Course 4: 3.0
Course 5: 2.8
Course 6: 1.9
For each test case, output a line in the format "Case #x: " where x is the case number (starting from 1), followed by the name of the most difficult course according to students' rating. In the next 6 lines are the output of the ratings for each course. Format the output in 1 decimal place. Refer to the sample output.