阅读以下程序,写出输出结果。
class Animal {
Animal() {
System.out.print ("Animal "); }
}
public class Dog extends Animal {
Dog() {
System.out.print ("Dog "); }

public static void main(String[] args) {
Dog snoppy= new Dog(); }
}
出自:江苏开放大学JAVA程序设计形成性考核作业1