Add two numbers.
Usage
add( a, b, )
a: int
First number.
b: int
Second number.
int
Sum of a and b.
from gdtest_mock_code import add add(2, 3)