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