5 lines
93 B
Python
5 lines
93 B
Python
|
|
import math
|
||
|
|
|
||
|
|
number = int(input('Enter number over 500 : '))
|
||
|
|
print(round(math.sqrt(number)))
|