We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 74b853b + b4dc61a commit 15e659eCopy full SHA for 15e659e
SimpleAddition/Sumof2no.py
@@ -0,0 +1,7 @@
1
+#python program to add two numbers
2
+x = input("Enter a number: ")
3
+y = input("Enter another number: ")
4
+
5
+sum = int(x) + int(y)
6
7
+print("The sum is: ", sum)
0 commit comments