public static void Main()
Adress adress = new Adress(641121, "Russia", "Chelyabinsk", "Lenina", 22, 43);
public int Index {get; set;}
public string Country {get; set;}
public string City {get; set;}
public string Street {get; set;}
public int House {get; set;}
public int Apartment {get; set;}
public Adress(int index, string country, string city, string street, int house, int apartment)
Console.Write($"Index: {Index}\nCountry: {Country}\nCity: {City}\nStreet: {Street}\nHouse: {House}\nApartment: {Apartment}");