#include <iostream> using namespace std; class Date { friend ostream& operator<<(ostream& out, Date& d); public: Date(int year = 1, int month = 1, int day = 0) :_year(year) , _month(month) , _day(day) {} int GetMonthDay(int year, int ...