                              // Chapter 1 - Programming exercise 1
#include "iostream.h"

main()
{

   for (int index = 0 ; index < 3 ; index++) {
      cout << "John Doe\n";
      cout << "Jan 1, 1955\n\n";
   }
}
