#include<iostream> using namespace std; int main(){ int x; cin>>x; for(int i=1;i<=20;i++){ x=x+0.2*x; } cout<<x; }