Skip to content

Commit c26ac71

Browse files
committed
Sum of two numbers
1 parent 35e7860 commit c26ac71

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Sum of two numbers.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#;==========================================
2+
#; Title: Sum of Two numbers
3+
#; Author: @AyemunHossain
4+
#;==========================================
5+
6+
7+
a = 10
8+
b = 5
9+
sum = a+b
10+
print(sum)
11+
12+
#or
13+
14+
a = 10
15+
b = 5
16+
print(a+b)

0 commit comments

Comments
 (0)