#include #include using namespace std; int main() { int i {2}; while (i <1000) { cout << i << "\n"; i *= 2 ; } return EXIT_SUCCESS; }