Date::Date(int d,int m,int y) { day=d; month=m; year=y; } void Date::print() { cout<<year<<month<<day<<endl; }