condition 3 and 4 not met
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();
man = woman.husband;
woman = man.wife;
}
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;
}
}