What is the result of compiling and executing this Java code?
interface Operate {
int operation(int a, int b);
}
public class Calculator {
public static void main(String[] args) {
Operate add = (a, b) -> a + b;
System.out.println(add.operation(5, 3));
}
}