using System;
// Define the class
public class Cat
{
// Create fields that describe the class
string name;
string race;
// Create Constructor
public Cat()
name = "NA";
race = "NA";
}
//second constructor that takes
public Cat(string name2, string race2)
name=name2;
race=race2;
// Create Methods that describe the behavior of the class
public static void Main()
//creating first object called Cleo, which belongs to the cat class
Cat Cleo = new Cat();
Console.WriteLine(Cleo.name);
//creating second object called BlackKitty
Cat BlackKitty= new Cat("Erdin","Black kitty");
Console.WriteLine(BlackKitty.name);