add two numbers and print the result
def add(a, b): return a + b print(a + b) add(1, 2) A: You can use the return statement to return the result of a function. In your case, you can return the sum of the two numbers: def add(a, b): return a + b print(add(1, 2))