From e60ee80a54c675fc18fa224133c6cde65c1be1bd Mon Sep 17 00:00:00 2001 From: Jafar-Sadiq Shittu <62627691+Zuko-J@users.noreply.github.com> Date: Thu, 21 Oct 2021 18:11:24 +0100 Subject: [PATCH] Update add2numbers.py --- add2numbers.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/add2numbers.py b/add2numbers.py index 8250b99..f5f858d 100644 --- a/add2numbers.py +++ b/add2numbers.py @@ -8,3 +8,10 @@ # printing values print("Sum of {0} and {1} is {2}" .format(num1, num2, sum)) + +def add_(num1, num2): + output = num1 + num2 + + print(output) + +add_(15,12)