class Knoten
{ int wert;
  Knoten naechster;
  
  Knoten (int zahl, Knoten next)
  { this.wert = zahl;
    this.naechster = next;
  }
} // class Knoten

