Series of Powers
In this problem you must find the sum of powers:
S(l, h, k) = l^k + (l + 1)^k+ (l + 2)^k+ ... + (h - 1)^k+ h^k
Given the values of l, h and k your job is to find the value of S(l, h, k).
Input
Consists of no more than 9999 test cases. Each line contains three integers l, h (0 ≤ l ≤ h ≤ 15000000, |l - h|≤ 1000) and k (1 ≤ k ≤ 15000000). Input is terminated by a line with three -1.
Output
For each test case print in a separate line its serial number in four fields and the approximate value of S(l, h, k). This approximate value should be of the form 0.ddddddedddddddddd. The value of mantissa is always less than 1 and has six digits after the decimal point. If mantissa is not zero, the first digit after the decimal point must not be zero. If value of the exponent is irrelevant (does not effect the value of the number) set its value as 1. Follow the exact formatting shown in the sample output.