//We can make the counter step up by more than one #include main() { int i; for(i=1; i<=1000; i = i + i) cout<< i << endl; return 0; }