
public class MathMethods
{
   
   public static void main(String[] args) 
   {
       double x = -1;
       
       x = Math.sqrt(49);
       x = Math.pow(2, 3);
   }
}  

