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