Skip to content

Instantly share code, notes, and snippets.

View K0che's full-sized avatar

Marcus Zippka K0che

  • Berlin
View GitHub Profile
public final class Math {
private Math() {}
public static int add(int firstNumber, int secondNumber) {
return firstNumber + secondNumber;
}
public static int multiply(int multiplicand, int multiplier) {
return multiplicand * multiplier;
}