#include //for the object cout #include //for the macro EXIT_SUCCESS #include "date.h" //for the class date using namespace std; int main() { const date d(2, 13, 2025); d.print(); cout << "\n"; return EXIT_SUCCESS; }