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