public static void Main()
Console.WriteLine($"{c1.Color} car has top speed of {c1.TopSpeed}");
Console.WriteLine($"{c2.Color} car has top speed of {c2.TopSpeed}");
Console.WriteLine($"{c3.Color} car has top speed of {c3.TopSpeed}");
public string Color { get; set; }
public int TopSpeed { get; set; } = 100;