## add()


Add two numbers.


Usage


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


This function uses an executable code cell that should be run by Quarto during the build.


## Parameters


`a: int`  
First number.

`b: int`  
Second number.


## Returns


`int`  
The sum of a and b.


## Examples


``` python
from gdtest_code_cells import add

add(2, 3)
```


    5
