public static void Main()
string fruitColor01 = "Orange";
string fruitColor02 = "Orange";
if ( (fruitWeight01 > fruitWeight02) && (fruitColor01 == fruitColor02) )
result = " Both the weight and color of fruit 1 and 2 are the same.";
result = " Either the wright or color of fruit 1 and 2 are different.";
Console.WriteLine(result);