aboutsummaryrefslogtreecommitdiffstats
path: root/noetic-llama/src/ollamawrapper/src/capabilities/basicmaths.py
blob: e2491e0a547aea4b230482c66bf150a00dbc0685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
def add(num1=1, num2=2):
    """Returns the output of two numbers added together

    Args:
        num1 (int): The first number to add together
        num2 (int): The second number to add together

    Returns:
        int: The sum of the two numbers
    """
    print("%f + %f = %f" % (num1, num2, num1 + num2))