// L-8 MCS 360 Fri 9 Sep 2010 : test_clock.cpp

#include "clock.h"
#include <iostream>

using namespace std;

int main()
{
   Clock c;

   cout << "The current time is "
        << c << "." << endl;
  
   return 0;
}

