// main.cc  P. Conrad CISC181 Spring 2005 
// illustrate error message when + is not overloaded

#include "time.h"
#include <iostream>
using namespace std;

int main(void)
{
  Time_C start(13,25); // start time is 1:25pm
  cout << "start = " << start << endl;
  return 0;
}
