#include using namespace std; int main(){ int number[] = {3, 6, 9, 15, 24, 39}; int i = 0; while(i < 6) cout << number[i++] << endl; return 0; }