#include<iostream> using namespace std; int main(){ int m,a; cin>>m; for(int i=1;i<=20;i++){ m=m+m*0.2; } cout<<m<<endl; return 0; }