Answer:
def smallest_of_three(a, b, c):
return min(a, b, c)
print(smallest_of_three(7, 15, 3))
Step-by-step explanation:
The above program takes three integers as inputs and returns the smallest of the three values using the min() function which takes an iterable of numbers as input and returns the smallest number in it. In this case, we pass the three integers a, b, and c as arguments to the min() function and it returns the smallest of the three.