We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afc798a + 296956f commit 935317aCopy full SHA for 935317a
SimpleAddition/sum.py
@@ -0,0 +1,8 @@
1
+# Simple Python program to Add Two Numbers
2
+
3
+num1 = input(" Please Enter the 1st Number: ")
4
+num2 = input(" Please Enter the 2nd number: ")
5
6
+# Using arithmetic + Operator to add two numbers
7
+sum = float(num1) + float(num2)
8
+print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
0 commit comments