please tell me where should be changed
package com.codegym.task.task02.task0204;
/*
Family relations
*/
public class Solution {
public static void main(String[] args) {
//write your code here
woman.husband=man;
man.wife=woman;
Man man=new woman.husband();
Woman woman =new 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;
}
}