#include<stdio.h>
int main(){
int x = 1,d = 10;
while(d>1){
x = (x+1)*2;
d--;
}
printf("x=%d",x);

return 0;
}