public static void Main()
string good = "1 0 0 0 0 0";
string evil = "1 0 0 0 0 0 0";
string[] words = good.Split(' ');
string[] w2 = evil.Split(' ');
int a = int.Parse(words[0])*1;
int b = int.Parse(words[1])*2;
int c = int.Parse(words[2])*3;
int d = int.Parse(words[3])*3;
int e = int.Parse(words[4])*4;
int f = int.Parse(words[5])*10;
int a1 = int.Parse(w2[0])*1;
int b2 = int.Parse(w2[1])*2;
int c3 = int.Parse(w2[2])*2;
int d4 = int.Parse(w2[3])*2;
int e5 = int.Parse(w2[4])*3;
int f6 = int.Parse(w2[5])*5;
int g6 = int.Parse(w2[6])*10;
int sum2 = a1+b2+c3+d4+e5+f6+g6;
Console.WriteLine("Battle Result: Evil eradicates all trace of Good");
Console.WriteLine("Battle Result: Good triumphs over Evil");
Console.WriteLine("Battle Result: No victor on this battle field");