#include<bits/stdc++.h> using namespace std; int main() { int n; double x; cin>>x>>n; for (int i=1;i<=n;i++) { x=x*1.001; } cout<<fixed<<setpreision(4)<<x; return 0; }
lizikid 공용 계정을 사용