using System;
namespace MyApplication
{
public class Car
string color;
int maxSpeed;
public static void Main(string[] args)
Car myObj = new Car();
myObj.color = "red";
myObj.maxSpeed = 200;
Console.WriteLine(myObj.color);
Console.WriteLine(myObj.maxSpeed);
}