From 0f5dde768ad62c5a109483be8d2760cdb6a26a53 Mon Sep 17 00:00:00 2001 From: LorenzoMaci Date: Mon, 30 Oct 2023 18:01:57 +0100 Subject: [PATCH] esercizio_somma --- src/esercizio_somma.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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: