import java.lang.*;
public class MathDemo {
public static void main(String[] args) {
//what is Math.pow(3, 2)?
double x = 3;
double y = 2;
System.out.println("Math.pow(" + x + "," + y + ")=" + Math.pow(x, y));
}
}
//the Output is 9