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