using System;
public class Program
{
class Artis
public string name; // Create a field
// Create a class constructor for the Car class
public Artis()
name = "WONG"; // Set the initial value for model
}
static void Main(string[] args)
Artis pap = new Artis(); // Create an object of the Car Class (this will call the constructor)
Console.WriteLine(pap.name); // Print the value of model