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