Answer:
def multiply(a, b):
print(a*b)
multiply(2,3)
Step-by-step explanation:
Using python3 :
The program is written using python 3 ;
def represent the statement used at the start of a function.
Multiply is the name given to our function (it could be any other name of interest)
(a, b) are the argument, which represents the two integers the function takes.
print(a * b) = What the function does is to print the product of a and b
multiply(2,3) is used to test out our function by call the name and Giving it two integers to work on. The function will print 6