12 lines
134 B
Plaintext
12 lines
134 B
Plaintext
import math
|
|
a = math.pow(12.09, 2)
|
|
print(a)
|
|
b = a / 10
|
|
print(b)
|
|
c = 3330.97 - b
|
|
print(c)
|
|
d = math.sqrt(c)
|
|
print(d)
|
|
e = d / 9
|
|
print(e)
|