From bd5e214d9c298b98348e3f9632505cc0efacdce0 Mon Sep 17 00:00:00 2001 From: Aljubina Date: Mon, 16 Feb 2026 10:36:53 +0530 Subject: [PATCH] renamed the variables --- calci.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/calci.py b/calci.py index 21d9ace5233..e988d10638e 100644 --- a/calci.py +++ b/calci.py @@ -1,4 +1,4 @@ -a = int(input("enter first value")) -b = int(input("enter second value")) -add = a + b +First = int(input("enter first value")) +Second = int(input("enter second value")) +add = First + Second print(add)