Advertisement
j33vansh

Answer 1 Looping Py

Jun 26th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. n = int(input())
  2. output = 0
  3. while(output*output) <=n:
  4.     output+=1
  5. output-=1
  6. print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement