#include<bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; for(int i=0;i<b;i=i+1){ a=1.001*a; } cout<<a; return 0; }