class Parent {
    int x = 100;
     
    Parent() {
    this(500);
    }
    Parent(int x) {
    this.x = x;
    }
    int getX() {
    return x;
    }
}

class Child extends Parent {
    int x = 1000;
     
    Child() {
    this(5000);
    }
     
    Child(int x) {
    this.x = x;
    }
}
 
public class Main {
    public static void main(String[] args) {
        Child obj = new Child();
        System.out.println(obj.getX());
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: