public class Main { public static void main(String[] args) { Dog dog = new Dog(); Cat cat = new Cat(); dog.makeSound(); // Output: Woof! cat.makeSound(); // Output: Meow! dog.swim(); // Output: The dog is swimming! } }