using System;
class Homo
{
   virtual internal string Wash()
    {
        return "wet & dry";
        
  }
}
class Woman:Homo
{
   override internal string Wash()
    {
        return "wet";
        
  }
}
        class Man:Homo
{
   override internal string Wash()
    {
        return "dry";
    }
}
public class HelloWord
{
    static string result;
    public static void Main(string[] args)
   {
     Console.WriteLine(" ");
     Homo samuel = new Man();
     Homo lucy = new Woman();
     Console.WriteLine(samuel.GetType()+" "+samuel.Wash());
     Console.WriteLine(lucy.GetType()+" "+lucy.Wash());     
  }
}