//In the Name of ALLAH
//This program prints the following sequence on the screen:
//2 4 8 16 32 ...
#include <stdio.h>
#include <conio.h>
void main()
 {
 int i;
 // *** The Main Body *** //
 clrscr();
 printf("This program prints 13 terms of the following sequence on the screen:\n2 4 8 16 32 ...\n");
 printf("Press any key to continue\n\n");
 getch();
 for (i=1;i<=10000;i*=2)
	{
	printf("%d\t",i);
	getch();
	}
 getch();
 }