def add(a, b):
    """Computes and returns the sum of two numbers.

Args:
    a (int): The first number.
    b (int): The second number.

Returns:
    int: The sum of a and b.
"""
    return a + b