package inherit1;

class Zi {
    int num = 20;
    public void show(){
        int num = 30;
        System.out.println(num);
    }
}
