I have problems with rounding big numbers. My code:
import math
n = int(input())
print (int(math.floor(math.sqrt(n))))
Input:
10000000000000000000000000000000000000000000000000000000000000000000000000000
Output:
99999999999999997748809823456034029568
How can i solve the problem? Sorry for my English!!!