class SchlechterWert extends Wert {
  public synchronized int get() {
    return wert;
  }
  public synchronized void put (int w) {
    wert = w;
  }
}
