# include<iostream> using namespace std; int main(){ int m; scanf("%d",&m); for(int i=1;i<=20;i++){ m=m+m*0.2; } printf("%d",m); return 0; }