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";
//}
// Create Methods that describe the behavior of the class
//void meow()
// Console.WriteLine("Meowww");
public static void Main()
Cat Cleo = new Cat();
//Cleo.meow();
}