public static void Main()
School sch = new School();
Console.WriteLine("Въведете име на училище :");
sch.name = Console.ReadLine();
Console.WriteLine("Въведете адрес :");
sch.adress = Console.ReadLine();
Console.WriteLine("Въведете телефон за контакт :");
sch.phone = int.Parse(Console.ReadLine());
Console.WriteLine("Име :" + sch.name);
Console.WriteLine("Адрес :" + sch.adress);
Console.WriteLine("Телефон :" + sch.phone);