{public static void Main(string [] args)
{School mySchool = new School ();
mySchool.adress = "Burgas";
mySchool.phone = "08392749184";
Console.WriteLine("the name is " + mySchool.name);
Console.WriteLine("the adress is " + mySchool.adress);
Console.WriteLine("the phone number is " + mySchool.phone);