class Parent { private int i; public int j; int k; private Parent() { i = 1; j = 2; k = 3; } public Parent(int a, int b, int c) { i = a; j = b; k = c; } public void Print() { System.out.println("ParentPrint i is " + i + " j is " + j + " k is " + k); } public void Echo() { System.out.println("ParentEcho i is " + i + " j is " + j + " k is " + k); } public static void main(String[] argv) { Parent P = new Parent(4, 5, 6); P.Print(); P.Echo(); Parent Q = new Parent(); Q.Print(); } }