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