Skip to content

Commit d43748c

Browse files
committed
Create solution for "Show the different operations of two numbers"
1 parent 8c3aa9e commit d43748c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

operations.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
def main():
2+
a = 6
3+
b = 3
4+
print("Sum:", a + b)
5+
print("Difference:", abs(a - b))
6+
print("Product:", a * b)
7+
print("Quotient:", a / b)
8+
9+
10+
if __name__ == "__main__":
11+
main()

0 commit comments

Comments
 (0)