class xyz01 {
class xyz02 { /* Inner class */
int x;
int y;
int z;
xyz02 (int a, int b, int c) {
x = a;
y = b;
z = c;
}
}
xyz02 hallo;
xyz01 (int a, int b, int c) {
hallo = new xyz02 (a, b, c);
}
}
class abc extends xyz01 {
int f;
int g;
int h;
abc (int a, int b, int c) {
f = a;
g = b;
h = c;
}
}
public class java03 {
public static void main(String [] args) {
System.out.println ("Hallo Welt");
}
}