We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76e3877 + bd5e214 commit a4bfef6Copy full SHA for a4bfef6
calci.py
@@ -1,4 +1,4 @@
1
-a = int(input("enter first value"))
2
-b = int(input("enter second value"))
3
-add = a + b
+First = int(input("enter first value"))
+Second = int(input("enter second value"))
+add = First + Second
4
print(add)
0 commit comments