package zahlen;
public interface N{
  int value();
  N add(N that);
  N mult(N that);
}

