diff --git a/src/esercizio_somma.py b/src/esercizio_somma.py index 9f8e9b7..d54ccf2 100644 --- a/src/esercizio_somma.py +++ b/src/esercizio_somma.py @@ -6,9 +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: