Files
python-by-example-150-chall…/challenges27-34/challenge-029.py

5 lines
93 B
Python
Raw Normal View History

2019-07-17 09:56:46 +03:00
import math
number = int(input('Enter number over 500 : '))
print(round(math.sqrt(number)))