#include<bits/stdc++.h> using namespace std; double n; int m; int main(){ cin>>n>>m; for(int i=1;i<=m;i++)n=n*1.001; printf("%.4lf\n",n); return 0; }