Question 6
Consider the following Python code.
File name: main.py
def calculate(funx): def wrapper(a, b): x = funx(a, b) return x**2 return wrapper
@calculatedef foo(x, y): return x - y
# main codeprint(foo(5, 2))What is the correct output of the given code?
10
9
3
4