What is the result of the following code?
public class Shapes {
public double calculateCircleArea(double radius) {
return Math.PI * Math.pow(radius, 2);
}
public double calculateRectangleArea(double length, double width) {
return length * width;
}
public static void main(String[] args) {
Shapes shapes = new Shapes();
System.out.println(shapes.calculateCircleArea(5) + shapes.calculateRectangleArea(10, 2));
}
}