public class IntegerObj { public int value; // Constructor public IntegerObj(int x) { value = x; } public String toString() { return "" + value; } }