package cell;

public class IntCell {
    public int read(){ return storedValue;}
    public void write( int x ){ storedValue = x; }
    private int storedValue;
    
    public static void main(String[] args) {
        IntCell i = new IntCell();
        i.write(5);
        System.out.println(i.read());
    }
}