Content deleted Content added
Line 89:
<syntaxhighlight lang="python" line>
from math import sqrt
def f(t):
return sqrt(abs(t)) + 5 * t
a = [float(input()) for _ in range(11)]
|
Line 89:
<syntaxhighlight lang="python" line>
from math import sqrt
def f(t):
return sqrt(abs(t)) + 5 * t
a = [float(input()) for _ in range(11)]
|