#include #include #include using namespace std; class date { protected: int year_; int month_; int day_; public: date(); date(const long& d); date(const int& d, const int& m, const int& y); bool valid(void) const; int day() const;