Pro.ID22478 TitleExponentiation Title链接http://10.20.2.8/oj/exercise/problem?problem_id=22478 AC8 Submit12 Ratio66.67% 时间&空间限制描述Problems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for many computer systems. This problem requires that you write a program to compute the exact value of Rn where R is a real number ( 0.0 < R < 99.999 ) and n is an integer such that 0 < n ≤ 25. 输入The input will consist of a set of pairs of values for R and n. The R value will occupy columns 1 through 6, and the n value will be in columns 8 and 9. 输出Description Problems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for many computer systems. This problem requires that you write a program to compute the exact value of Rn where R is a real number ( 0.0 < R < 99.999 ) and n is an integer such that 0 < n ≤ 25. Input The input will consist of a set of pairs of values for R and n. The R value will occupy columns 1 through 6, and the n value will be in columns 8 and 9. Output The output will consist of one line for each line of input giving the exact value of Rn. Leading zeros should be suppressed in the output. Insignificant trailing zeros must not be printed. Don't print the decimal point if the result is an integer. Sample Input 95.123 12 Sample Output 548815620517731830194541.899025343415715973535967221869852721 Hint If you don't know how to determine wheather encounted the end of input: Source 样例输入95.123 12 样例输出548815620517731830194541.899025343415715973535967221869852721 提示If you don't know how to determine wheather encounted the end of input: |