public static void Main()
Car car = new Car("Tokyo", "Toyota", 2022, "red");
Car car2 = new Car("Germany", "BMW", 2022, "blue");
public string Make { get; set; }
public string Model { get; set; }
public int Year { get; set; }
public string Color { get; set; }
public Car(string make, string model, int year, string color)
Console.WriteLine($"{Model} is starting");
Console.WriteLine("The car is stopping");
Console.WriteLine("The car is driving");