/* Auto4.java */

public class Auto4
extends Auto2
implements Comparable
{
  public int compareTo(Object o)
  {
    int ret = 0;
    if (leistung < ((Auto4)o).leistung) {
      ret = -1;
    } else if (leistung > ((Auto4)o).leistung) {
      ret = 1;
    }
    return ret;
  }
}