/* student.h
 */

struct Student {
  int  mid;
  int final;
  int hmws;
  friend ostream& operator<<(ostream& out, const Student a);
  friend istream& operator>>(istream& in, Student a);
  bool operator==(const Student& a) const;
};


