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