Skip to content

Commit

Permalink
feat:completed sum
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzodidomenic committed Oct 30, 2023
1 parent c446327 commit 7e051ce
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/sum.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
def sum(a: int, b: int) -> int:
return a + b
return a+b

print("insert the first number")
k = int(input())

print("insert the second number")
z = int(input())

print(k," + ",z)
print(sum(k,z))

0 comments on commit 7e051ce

Please sign in to comment.