using System;
public class Program
{
/*
1. Create a Predator Class with an IsHunting property and an IsSwimming Property;
2. Add a Hunt() method to the Predator Class which when called sets IsHunting to true.
3. Create a Shark Class that inherits from the Predator Class.
4. Add a Hunt() method to the Shark Class which sets IsHunting and IsSwimming to true;
*/
public static void Main()
}