using System;
class Car
{
string brand;
//your constructor here
public string getBrand()
return brand;
}
public void Run()
Console.WriteLine("Car is running...");
public class Program
public static void Main()
//Call the method getBrand method from class Car here