Console.WriteLine("Enter number of students in class number 1");
int num1 = int.Parse(Console.ReadLine());
int[] truma1 = new int[num1];
for (int i = 0; i < num1; i++) {
Console.WriteLine("Enter truma of student " + (i + 1));
truma1[i] = int.Parse(Console.ReadLine());
Console.WriteLine("Enter number of students in class number 2");
int num2 = int.Parse(Console.ReadLine());
int[] truma2 = new int[num2];
for (int i = 0; i < num2; i++) {
Console.WriteLine("Enter truma of student " + (i + 1));
truma2[i] = int.Parse(Console.ReadLine());
int count1 = peula(truma1);
Console.WriteLine("Count of student above the average for class1" + count1);
int count2 = peula(truma2);
Console.WriteLine("Count of student above the average for class2" + count2);
for (int i = 0; i < n; i++) {
for (int i = 0; i < n; i++) {