Question: Why is there an error in the code, and how would you fix it?
def foo(a, b): print(a + b) x = foo(2, 3) * 10
Hint: This function needs to return something to be complete.