// 3G #include<iostream> int main(){ int i=10,left=1; while(i>=1){ left=(left+1)*2; i--; } printf("%d",left); return 0; }