def add_numbers(a: int, b: int) -> int: """Add two numbers and return the result.""" return a + b # Test the function result = add_numbers(1, 2) print(f"Result: {result}")