Skip to content

Commit c277976

Browse files
Sumof2no.
1 parent 74b853b commit c277976

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

SimpleAddition/Sumof2no.

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)