class A {
private int i;
public int get() {
return this.i;
}
public void put( int p_i ) {
this.i = p_i;