Person father = new Person("Pesho",30);
Person mother = new Person("Annie",29);
Person son = new Person("Gosho",5);
Person dauther = new Person("Reni",3);
Family one =new Family(father,mother,son,dauther);
public static void Main()
Console.WriteLine("Hello World");