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