Log In Contact
i = 1 def sqrt(n): while i < n: if i*i >= n: return i i = i + 1 print('sqrt(10) is', sqrt(10)) print('i is', i)