diff --git a/addnumbers.py b/addnumbers.py index 367189c..237f2e5 100644 --- a/addnumbers.py +++ b/addnumbers.py @@ -10,3 +10,11 @@ # Display the sum # will print value in float print("The sum of {0} and {1} is {2}" .format(number1, number2, sum)) + + +def add_(num1, num2): + output = num1 + num2 + + print(output) + +add_()