public class Solution { public static void main(String[] args) { //write your code Woman woman = new Woman(); Cat cat = new Cat(); Dog dog = new Dog(); Fish fish = new Fish(); cat.owner = woman; woman = dog.owner; woman = fish.owner; } public static class Cat { public Woman owner; } public static class Dog { public Woman owner; } public static class Fish { public Woman owner; } public static class Woman { } }