## add()


Add two numbers.


Usage


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


## Parameters


`a: int`  
First number.

`b: int`  
Second number.


## Returns


`int`  
Sum of a and b.


## Examples

``` python
from gdtest_mock_code import add

add(2, 3)
```
