CF630B.Moore's Law

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.

Moore's law is the observation that the number of transistors in a dense integrated circuit doubles approximately every 2424 months. The implication of Moore's law is that computer performance as function of time increases exponentially as well.

You are to prepare information that will change every second to display on the indicator board. Let's assume that every second the number of transistors increases exactly 1.0000000111.000000011 times.

输入格式

The only line of the input contains a pair of integers nn ( 1000<=n<=10 0001000<=n<=10 000 ) and tt ( 0<=t<=2 000 000 0000<=t<=2 000 000 000 ) — the number of transistors in the initial time and the number of seconds passed since the initial time.

输出格式

Output one number — the estimate of the number of transistors in a dence integrated circuit in tt seconds since the initial time. The relative error of your answer should not be greater than 10610^{-6} .

输入输出样例

  • 输入#1

    1000 1000000
    

    输出#1

    1011.060722383550382782399454922040
    
首页