#include<iostream> int main(){ int a=1,b=0; while(b<10){ a=(a+1)*2; b++; } printf("%d",a); return 0; }