#include <stdio.h> int main (void) { int day = 9,x1=1; while(day>0){ x1 = (x1+1)*2; day--; } printf("%d\n",x1); return 0; }