## add()


Add two numbers.


Usage


``` python
add(
    a,
    b,
)
```


## Parameters


`a: int`  
First number.

`b: int`  
Second number.


## Returns


`int`  
The sum of a and b.
