diff --git a/src/sum.py b/src/sum.py index 5dda91d..00717a0 100644 --- a/src/sum.py +++ b/src/sum.py @@ -1,2 +1,8 @@ def sum(a: int, b: int) -> int: return a + b + +c= int(input ("Enter the first number: ")) +d= int(input ("Enter the second number: ")) + +result= sum(c,d) +print (f"The sum is {result} ")