package zahlen;

public interface Z{
  int value();
  Z add(Z that);
  Z mult(Z that);
}

