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