#include<iostream>
using namespace std;
class Date
{
public:
void printDate()
{
cout<<year<<"."<<month<<"."<<day<<endl;
}
void Getyear()
{
cout<<"year"<<"="<<year<<endl;
}
void Getmonth()
{
cout<<"month"<<"="<<month<<endl;
}
using namespace std;
class Date
{
public:
void printDate()
{
cout<<year<<"."<<month<<"."<<day<<endl;
}
void Getyear()
{
cout<<"year"<<"="<<year<<endl;
}
void Getmonth()
{
cout<<"month"<<"="<<month<<endl;
}