#include<iostream> using namespace std; int t(int n){ if(n==10){ return 1; }else{ return(t(n+1)+1)*2; } } int main(){ cout<<t(1); return 0; }