generated from KKlochko/poetry-template
8 lines
63 B
Python
8 lines
63 B
Python
|
|
def sum(a, b):
|
|
return a+b
|
|
|
|
def mul(a, b):
|
|
return a*b
|
|
|