public class Program195 {
static int i;
int j;
public Program195() {
// TODO Auto-generated constructor stub
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Program195 x1 = new Program195();
Program195 x2 = new Program195();
x1.i=3;
x1.j =4;
System.out.println("x=="+x1.i+"y=="+x1.j);
x2.i=5;
x2.j=6;
System.out.println("x=="+x1.i+"y=="+x1.j+"x22=="+x2.i+"x2=="+x2.j);
}
}