using System;
class Program {
static void Main(string[] args) {
int[] A = new int[20];
int countNegative = 0;
Random rnd = new Random();
for (int i = 0; i < A.Length; i++) {
A[i] = rnd.Next(-75, 76);
if (A[i] < 0) {
countNegative++;
}
}
Console.WriteLine("Количество отрицательных элементов массива: " + countNegative);
}
}