Codeforces 630B Moore's Law

题目:http://codeforces.com/contest/630/problem/B

代码:

#include<stdio.h>
#include<string.h>
#include<math.h>
using namespace std;

int main()
{
    __int64 a,b;
    scanf("%I64d%I64d",&a,&b);
    printf("%llf",a*pow(1.000000011,b));
}


你可能感兴趣的:(Codeforces 630B Moore's Law)