example
example.add(a: int, b: float)
Add an integer and a float
a : int
first number to add
b : float
the second number to add
: float
Sum of both parameters
print(add(3, 0.14))
3.14