#include<bits/stdc++.h> using namespace std; long long tz(int n){ if(n==10){ return 1; } return (tz(n+1)+1)*2; } int main(){ cout<<tz(1); return 0; }