// Test driver

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

int main()
{
  Time mealTime,
       bedTime;
  cout << "Enter meal time and bedtime (hh:mm xM): ";
  cin >> mealTime >> bedTime;

  cout << "We'll be eating at " << mealTime << endl;
  cout << "We'll hit the hay at " << bedTime << endl;
}

