package com.codegym.task.task02.task0204; /* Family relations */ public class Solution { public static void main(String[] args) { //write your code here Man man = new man(); Woman woman = new woman(); woman.husband = man; man.wife = woman; } public static class Man { public int age; public int height; public Woman wife; } public static class Woman { public int age; public int height; public Man husband; } }