
public class Cell {
	Cell prev, next;
	int x;
	
	Cell(int x) {
		this.x = x;
	}
}
