using System;
public class Program
{
class Car
string make;
string model;
string color;
int year;
puplic Car(string make, string model, string color, int year)
this.make = make;
this.model = model;
this.color = color;
this.year = year;
}
puplic void let()
Console.WriteLine("u drive the " + make + " " + model);
class MainClass
public static void Main(string[] args)
Car car1 = new car("ford", "mustang", "blue", 2023);
car2.let();