All Downloads are FREE. Search and download functionalities are using the official Maven repository.

api.Arithmetic Maven / Gradle / Ivy

package api;

import java.math.BigInteger;

public class Arithmetic {

  public static BigInteger add(BigInteger x, BigInteger y) {
    return x.add(y);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy