// 22.5HV2 Software Engineering II // Unit 4 Exercise 2 #include "name.h" ostream& operator<<(ostream& ostr, const Name& n) { return ostr << n.first << " " << n.last; }