<?php
// Precision depends on your precision directive
echo sqrt(9); // 3
echo sqrt(10); // 3.16227766 ...
?>
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int b = 34;
int p = 2;
float result = pow(b,p)
cout<< "Square = "<<result<<endl;
}