import standard.C.math
class Main {
function Main() {
var x = 2;
var y = 3;
var z;
z = pow(x, y);
echo "" + x + " to the power of " + y + " is " + z;
}
}
Results
2 to the power of 3 is 8