#include<iostream> using namespace std; int main() { long long b=1; for(int a=1;a<=9;a++) b=(b+1)*2; cout<<b; return 0; }