[docs] def add(a: int, b: int) -> int: """Add two integers and return the result.""" return a + b
Contents: