Given a float, print the float with 3 decimal places of accuracy. Input: Each line will contain a single float (0 < f < 2^37). Input will terminate with a line containing a single '0'. Output: Output one line per test case, containing the float, to 3 decimal places of accuracy. Input: 3.14159 2.9999 0 Output: 3.141 2.999