0х0, import math def plus(a, b): return (a + b) def square(x): return x ** 2 def minus(a, b): return a - b print(plus(square(3), 6))