#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; }