defadd(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))