We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74b853b commit c277976Copy full SHA for c277976
SimpleAddition/Sumof2no.
@@ -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