#include <iostream>
#include <conio.h>
#include <ctime>
#include <string>
// структура
//
using namespace std;
struct Data
{
int year;
string month;
int day;
};
void input(Data *s)
{
cout << "Ввод даты" << endl;
cout << "Введите год: " << endl;
cin >> s->year;
cout << "Введите месяц: " << endl;
cin.getline(s->month);
}
int main()
{
setlocale(LC_ALL, "Russian");
_getch();
return 0;
}