using System;
public class Cat
{
string name;
bool doctorv = false;
public Cat(string name, bool doctorv)
this.name = name;
this.doctorv = false;
}
public bool VisitDoctor()
return true;
public static void Main()
Console.WriteLine();