def mysq(A) { X=A; for (I=0; I<5; I++) { X=X/2+A/(2*X); print(X); } return(X); }