Skip to content

Commit

Permalink
esercizio_somma
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoMaci committed Oct 30, 2023
1 parent 0f5dde7 commit ef3ccac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/esercizio_somma.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def main():
a = int(input("Insert the first number: "))
b = int(input("Insert the second number: "))
b = int(input("Insert the second number: "))
print("Sum:", sum(a, b))

def sum(a: int, b: int) -> int:
Expand Down

0 comments on commit ef3ccac

Please sign in to comment.