class Cellule {
    private int k;
    private Cellule next;
    public Cellule(int k, Cellule n) {
      this.k = k;
      this.next = n;
    }
    public int hd() { return k; }
    public Cellule tl() { return next; }
}
