using System;
public class Program
{
public static void Main()
Car myCar = new Car();
Car yourCar = new Car();
myCar.make = "ford";
yourCar.make = "merc";
Console.WriteLine("I have a " + myCar.make + " and you have a " + yourCar.make);
}
public class Car
public string make;
public string model;
public string reg;
public double price;
public int noOfDoors;