package main import ( "strings" "fmt" "math" ) func mySqrt(x int) int { var i int for i = 0; i * i <= x; i++ { } return i - 1 }