What will be the output of the following Java program? class…

What will be the output of the following Java program? class Parent {    int a;     int decrement() {        return –a;    }     Parent(int a) {        this.a = a;    }} public class Child extends Parent {    private int b;     private int increment() {        return ++b;    }     public Child(int a, int b) {        super(a);        this.b = b;    }     public static void main(String[] args) {        Child obj = new Child(15, 25);         obj.increment();          obj.decrement();           System.out.printf(“%d, %d”, obj.a, obj.b);    }}