using tellMe = System.Console;

namespace smallTownUSA 
{
  
  class Dismissed
  {
    private object[] ofDesire;
    public void Humiliation(string himOn, string himOn2)
    {
      ofDesire = new object[2];
      ofDesire[0] = himOn;
      ofDesire[1] = himOn2;
    }
    private void Reconciliation()
    {
      tellMe.Write(ofDesire[0]);
    }
    static int Main()
    {
      Dismissed Jill = new Dismissed();
      Jill.Humiliation("Jack","Bob");
      Jill.Reconciliation();
      return 1;
    }
  }
}