#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = 625;
int result = sqrt(x);
cout << "Square root of " << x << " is " << result << endl;
return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
cout << "Square root of 25 = ";
// print the square root of 25
cout << sqrt(25);
return 0;
}