#include<bits/stdc++.h> using namespace std; int n=10,m=1,k; signed main() { for(int i=n-1;i>=1;--i) { m=(m+1)*2; } cout<<m; return 0; }