public static void Main()
double NP = 0, NG = 0, CNP = 0, CNG = 0;
for (int i = 0; i < 6; i++)
Console.WriteLine("INGRESA TU NUMERO ENTERO");
int numero = int.Parse(Console.ReadLine());
Console.WriteLine("Total de Numero positivos ingresados son: " + CNP);
Console.WriteLine("Total de Numero negativos ingresados son: " + CNG);
Console.WriteLine("TU PROMEDIO DE NUMEROS POSITIVOS ES:" + NP);
Console.WriteLine("TU SUMA DE NUMEROS NEGATIVOS ES:" + NG);