IDNLearn.com is your go-to platform for finding reliable answers quickly. Our experts provide timely, comprehensive responses to ensure you have the information you need.
The output of the program is 10.
def mult(a, b = 1, c = 1):
print(a * b * c)
mult(2, 5)
The code is written in python.
learn more on python here: https://brainly.com/question/22796383