#include <iostream>
#include <iostream>

class EventDate
{
private:
    short m_day;
    short m_month;
    short m_year;

public:
    EventDate(short day, short month, short year)
        : m_day(day), m_month(month), m_year(year) {}

    void print()
    {
        std::cout << m_day << "/" << m_month << "/" << m_year;
    }
};

int main()
{
    EventDate event { 18, 12, 2023 }; // Use short values for day, month, and year
    event.print(); // Calls the print method for the event object

    return 0;
}
