What is the output of the following code?
public class Calculator {
public int add(int x, int y) {
return x + y;
}
public int multiply(int x, int y) {
return x * y;
}
public static void main(String[] args) {
Calculator calc = new Calculator();
System.out.println(calc.add(5, 6) + calc.multiply(2, 3));
}
}