// countUp6.cpp
// Displays the integers from 1 up to 10, in a row.
// Uses do/while loop.

#include <iostream>

int main()
{
   int count = 1;
   do  {
      cout << "   "  << count;
      count++;
   } while ( count <= 10 );
   cout << endl;
   return 0;
}  // function main