// 3. Multiple parameters and logic block BiFunction<Integer, Integer, Integer> sum = (a, b) -> int result = a + b; return result; ;