Skip to content

Commit

Permalink
Add
Browse files Browse the repository at this point in the history
  • Loading branch information
NU-Mitul committed Sep 28, 2019
2 parents bf8141a + 12be2b7 commit 727df88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Multiplication.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class Multiplication:
def operation(self, a, b):
print("Multiplication of a and b:"+str(a*b))

return("Multiplication of a and b:"+str(a*b))


2 changes: 1 addition & 1 deletion Subtract.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ def __init__(self):
print("Subtraction")

def operation(self, a, b):
print("Subtraction of a and b:"+str(a-b))
return str(a-b)

0 comments on commit 727df88

Please sign in to comment.