5 lines
64 B
Python
5 lines
64 B
Python
def add(a,b):
|
|
return a*b
|
|
|
|
print(add(5,6))
|
|
# to add the thing |