// for each iteration, test three conditions while (small < large && large > 0 && small < MAXSMALL) { std::cout << "."; small++; large-=2; }