public class iFarm2
{
	public static void main(String[] args)
	{
		Animal domestic;
		domestic = new Cow();
		domestic.move();

		domestic = new Dog();
		domestic.move();

		domestic = new Duck();
		domestic.move();
	}
}