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