Console.WriteLine("7/7");
Console.WriteLine("Введи четрые числа");
int z = int.Parse(Console.ReadLine());
int x = int.Parse(Console.ReadLine());
int c = int.Parse(Console.ReadLine());
int v = int.Parse(Console.ReadLine());
Console.Write("Среднее Арифметическое: ");
Console.WriteLine((z + x + c + v) / 4);