interface Father3{
int age=40;
public void smoke();
}
class Son3 implements Father3{
int age=17;
@Override
public void smoke() {
// TODO Auto-generated method stub
System.out.println("the age of the son is "+super.age+" the son doesn't smoke sigarette");