#include<bits/stdc++.h> using namespace std; int main() { int a=1; for(int i=1;i<=10;i++) { a=(a+1)*2; } cout<<a; }