We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70b8f0 commit bd5e214Copy full SHA for bd5e214
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