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