class find 
{
public static void main(String args[])
{
double A = 5.0;
double B= 3.0;
double C = Math.pow( A, B );
System.out.print(C);
}
}

Posted on by