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