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