Given a list of floating point numbers, print their sum, rounded to the nearest hundreth. Input: Each line will contain a int n (0 < n < 2000), the number of floats on that line, followed by n floating point numbers (0 < f < 2^37). The float will not be more precise than 10^-7. Input will terminate with a line containing a single '0'. Output: Output one line per test case, containing the sum of the floats, rounded to the nearest hundreth, to 2 places of precision. Input: 4 1 2 3 4.5 2 1.1 8 1 1.115 1 0.001 1 0.01 0 Output: 10.50 9.10 1.12 0.00 0.01