mpo105.py

Created by schraf

Created on January 30, 2022

134 Bytes


from math import sqrt
from time import monotonic

def S(n): return sqrt(n)-1
t=monotonic()
S(40500)
print(monotonic()-t)