1 public class Operator { 2 public static void main(String[] args) { 3 double num = Math.pow(3,2); 4 System.out.println(num); //num =9 5 } 6 }