python-by-example-150-chall.../challenges27-34/challenge-029.py
2019-07-17 09:56:46 +03:00

5 lines
93 B
Python

import math
number = int(input('Enter number over 500 : '))
print(round(math.sqrt(number)))