Introduction - If you have any usage issues, please Google them yourself
#include <iostream.h>
class Time {
public:
Time (int hours = 0, int minutes = 0, int seconds = 0)
friend istream & operator >>(istream &, Time &)
friend ostream & operator <<(ostream &, const Time &)
private: