Skip to content

Commit 0486f6e

Browse files
addition of two numbers
1 parent 13cfc69 commit 0486f6e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: addition

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
num1 = int(input("Enter First Number: ")
2+
num2 = int(input("Enter Second Number: ")
3+
4+
sum = num1+num2
5+
6+
print(""Sum of {0} and {1} is {2}" .format(num1, num2, sum))

0 commit comments

Comments
 (0)