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