def multiply(a, b):
    return a * b

result = multiply(5, 4)
print(f"Multiplication result: {result}")