Source code for calculator.add

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