System.out.println("Add two integers (5 + 8): " + calc.add(5, 8)); System.out.println("Add three integers (10 + 15 + 20): " + calc.add(10, 15, 20)); System.out.printf ...