Your program will be given floating point numbers (32-bit), and calculate exponent and fraction.
IEEE 754: SEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFF
S = sign(1) E = exponent(8) F = fraction(23)
NOTE: If you donnot know IEEE 754,you can baidu it:)
输入解释
Each line contains a numbers.
输出解释
For each case, output a line containing two numbers, e (exponent) and f (fraction), by a single space. Fraction must be rounded to six digits after the decimal point.