class Father{
public void eat(){
System.out.println("Father eat:");
}
}
class Son{
public void eat(){
System.out.println("Son eat:");
}
}
public class JiCheng{
public static void main(String[] args){
Father f = new Father();
Son s = new Son();
f.eat();
s.eat();
}
}