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