Skip to content

Commit 5421280

Browse files
Merge pull request #2809 from MulkaSandhyaRani/calci
add simple calci
2 parents 5183bcc + a9bf68f commit 5421280

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

calci.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
a = int(input("enter first value"))
2+
b = int(input("enter second value"))
3+
add = a+b
4+
print(add)

0 commit comments

Comments
 (0)