#include int main (void) { int i, x; i=1; x=1; while ( 1 ) { x *= 2; printf("%d: %d\n",i,x); if ( x < 0 ) break; i++; } return 0; }