#include <iostream>
#include <cmath>
int main() {
int i = 1; // initialize counter to 1
while (i <= 25) { // loop until counter reaches 25
std::cout << "The square root of " << i << " is " << sqrt(i) << std::endl;
i += 2; // increment counter by 2 to get the next odd number
}
return 0;
}