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)