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