public static void Main()
Console.Write("Ingrese No Partidos Ganados : ");
int NPG = Convert.ToInt16(Console.ReadLine());
Console.Write("Ingrese No Partidos Empatados : ");
int NPE = Convert.ToInt16(Console.ReadLine());
int PT = (NPG * PPG) + (NPE * PPE);
Console.WriteLine("El puntaje total es: {0}", PT);