class SortableInt implements Sortable {
	SortableInt(int i) {this.i = i;}

	public int compareTo(Sortable other) {
		return Integer.compare(i, ((SortableInt)other).i);
	}

	public String toString() {return "SortableInt " + i;}

	private int i;
}
