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