def add(num1, num2): return num1 + num2 number_sum = add(2, 3) print(number_sum) ''' num1 is the first parameter num2 is the second parameter 2 is the first argument (things passed to functions) 3 is the second argument return is a keyword for returning from a function '''