struct Time {
int h;
int m;
int s;
};
struct Worker {
string name;
Time time;
int year;
Worker w1;
w1.time.h = 12;