public static void Main()
int x, nota, contar1, contar2;
Console.WriteLine ("INGRESE LA NOTA: ");
linea = Console.ReadLine ();
nota = int.Parse (linea);
Console.WriteLine ("CANTIDAD DE ALUMNOS CON NOTAS MAYORES A 7: ");
Console.WriteLine (contar1);
Console.WriteLine ("CANTIDAD DE ALUMNOS CON NOTAS MENORES A 7: ");
Console.WriteLine (contar2);