# Define a higher-order function
def apply_func(func, x, y):
return func(x, y)
# Define a simple function to be used as a parameter
def multiply(a, b):
return a * b
# Use the higher-order function with the multiply function
result = apply_func(multiply, 5, 3)
print(result) # Output: 15