public static void Main()
int n = int.Parse(Console.ReadLine());
for ( int i = 1; i <= n; i ++)
string color = Console.ReadLine();
else if ( color == "orange")
else if (color == "yellow")
else if( color == "white")
else if ( color == "black")
Console.WriteLine("Total points: {0}", totalPoints);
Console.WriteLine("Points from red balls: {0}", redBalls);
Console.WriteLine("Points from orange balls: {0}", orangeBalls);
Console.WriteLine("Points from yellow balls: {0}", yellowBalls);
Console.WriteLine("Points from white balls: {0}", whiteBalls);
Console.WriteLine("Other colors picked: {0}", otherBalls);
Console.WriteLine("Divides from black balls: {0}", blackBalls);