import java.util.*;
public class Cell {
private int value = 0; 

public void setValue(int newValue){ 
   this.value = newValue;
}
public int getValue( ) {
 return this.value;
}
public void printValue(){ 
  System.out.println(“Date: “ + new Date());
  System.out.println(“Value: “ + this.value);
}
public static void main(String [] args){
  Cell cell1 = new Cell();
  cell1.setValue(4);
  cell1.printValue();
}
}