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)