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 c6d2c59 + 0458f82 commit f286be0Copy full SHA for f286be0
add.py
@@ -0,0 +1,4 @@
1
+a = int(input('enter first number')
2
+b = int(input('enter second number')
3
+c = a + b
4
+print(c)
divide.py
+c = a / b
greeting.py
@@ -0,0 +1,2 @@
+n = input('enter your name')
+print('hello' n)
mul.py
+c = a * b
sub.py
+c = a - b
0 commit comments