#include<bits/stdc++.h> using namespace std; int main(){ int f[11]; f[10]=1; for(int i=9;i>=1;i--)f[i]=(f[i+1]+1)*2; cout<<f[1]; return 0; }